Cast: Stop logging kVideoFrameSentToEncoder and rename a couple events.
[chromium-blink-merge.git] / device / hid / hid.gyp
blob5925a3180548ee478b0219dd3133db668beb720e
1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
6   'variables': {
7     'chromium_code': 1,
8   },
9   'targets': [
10     {
11       'target_name': 'device_hid',
12       'type': 'static_library',
13       'include_dirs': [
14         '../..',
15       ],
16       'conditions': [
17         ['OS=="linux"', {
18           'dependencies': [
19             '../../build/linux/system.gyp:udev',
20           ],
21         }],
22       ],
23       'sources': [
24         'device_monitor_linux.cc',
25         'device_monitor_linux.h',
26         'hid_connection.cc',
27         'hid_connection.h',
28         'hid_connection_linux.cc',
29         'hid_connection_linux.h',
30         'hid_connection_mac.cc',
31         'hid_connection_mac.h',
32         'hid_connection_win.cc',
33         'hid_connection_win.h',
34         'hid_device_info.cc',
35         'hid_device_info.h',
36         'hid_report_descriptor.cc',
37         'hid_report_descriptor.h',
38         'hid_report_descriptor_item.cc',
39         'hid_report_descriptor_item.h',
40         'hid_service.cc',
41         'hid_service.h',
42         'hid_service_linux.cc',
43         'hid_service_linux.h',
44         'hid_service_mac.cc',
45         'hid_service_mac.h',
46         'hid_service_win.cc',
47         'hid_service_win.h',
48         'hid_usage_and_page.cc',
49         'hid_usage_and_page.h',
50         'hid_utils_mac.cc',
51         'hid_utils_mac.h',
52         'input_service_linux.cc',
53         'input_service_linux.h',
54         'udev_common.h'
55       ],
56     },
57   ],