Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(116)

Side by Side Diff: trunk/src/device/hid/hid.gyp

Issue 364213005: Revert 281282 "Revert 281133 "chrome.hid: enrich model with repo..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
11 'target_name': 'device_hid', 11 'target_name': 'device_hid',
12 'type': 'static_library', 12 'type': 'static_library',
13 'include_dirs': [ 13 'include_dirs': [
14 '../..', 14 '../..',
15 ], 15 ],
16 'sources': [ 16 'sources': [
17 'device_monitor_linux.cc', 17 'device_monitor_linux.cc',
18 'device_monitor_linux.h', 18 'device_monitor_linux.h',
19 'hid_collection_info.cc',
20 'hid_collection_info.h',
19 'hid_connection.cc', 21 'hid_connection.cc',
20 'hid_connection.h', 22 'hid_connection.h',
21 'hid_connection_linux.cc', 23 'hid_connection_linux.cc',
22 'hid_connection_linux.h', 24 'hid_connection_linux.h',
23 'hid_connection_mac.cc', 25 'hid_connection_mac.cc',
24 'hid_connection_mac.h', 26 'hid_connection_mac.h',
25 'hid_connection_win.cc', 27 'hid_connection_win.cc',
26 'hid_connection_win.h', 28 'hid_connection_win.h',
27 'hid_device_info.cc', 29 'hid_device_info.cc',
28 'hid_device_info.h', 30 'hid_device_info.h',
29 'hid_report_descriptor.cc', 31 'hid_report_descriptor.cc',
30 'hid_report_descriptor.h', 32 'hid_report_descriptor.h',
31 'hid_report_descriptor_item.cc', 33 'hid_report_descriptor_item.cc',
32 'hid_report_descriptor_item.h', 34 'hid_report_descriptor_item.h',
33 'hid_service.cc', 35 'hid_service.cc',
34 'hid_service.h', 36 'hid_service.h',
35 'hid_service_linux.cc', 37 'hid_service_linux.cc',
36 'hid_service_linux.h', 38 'hid_service_linux.h',
37 'hid_service_mac.cc', 39 'hid_service_mac.cc',
38 'hid_service_mac.h', 40 'hid_service_mac.h',
39 'hid_service_win.cc', 41 'hid_service_win.cc',
40 'hid_service_win.h', 42 'hid_service_win.h',
41 'hid_usage_and_page.cc', 43 'hid_usage_and_page.cc',
42 'hid_usage_and_page.h', 44 'hid_usage_and_page.h',
43 'hid_utils_mac.cc',
44 'hid_utils_mac.h',
45 'input_service_linux.cc', 45 'input_service_linux.cc',
46 'input_service_linux.h', 46 'input_service_linux.h',
47 ], 47 ],
48 'conditions': [ 48 'conditions': [
49 ['use_udev==1', { 49 ['use_udev==1', {
50 'dependencies': [ 50 'dependencies': [
51 '../udev_linux/udev.gyp:udev_linux', 51 '../udev_linux/udev.gyp:udev_linux',
52 ], 52 ],
53 }, { # use_udev==0 53 }, { # use_udev==0
54 # The Linux implementation is based on Udev. 54 # The Linux implementation is based on Udev.
55 'sources!': [ 55 'sources!': [
56 'device_monitor_linux.cc', 56 'device_monitor_linux.cc',
57 'device_monitor_linux.h', 57 'device_monitor_linux.h',
58 'hid_service_linux.cc', 58 'hid_service_linux.cc',
59 'hid_service_linux.h', 59 'hid_service_linux.h',
60 'input_service_linux.cc', 60 'input_service_linux.cc',
61 'input_service_linux.h', 61 'input_service_linux.h',
62 ], 62 ],
63 }], 63 }],
64 ], 64 ],
65 }, 65 },
66 ], 66 ],
67 } 67 }
OLDNEW
« no previous file with comments | « trunk/src/chrome/common/extensions/api/hid.idl ('k') | trunk/src/device/hid/hid_collection_info.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698