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

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

Issue 317783010: chrome.hid: enrich model with report IDs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Enrich JavaScript model (no incoming report filter) Created 6 years, 6 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
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 'conditions': [ 16 'conditions': [
17 ['use_udev==1', { 17 ['use_udev==1', {
18 'dependencies': [ 18 'dependencies': [
19 '../udev_linux/udev.gyp:udev_linux', 19 '../udev_linux/udev.gyp:udev_linux',
20 ], 20 ],
21 }], 21 }],
22 ], 22 ],
23 'sources': [ 23 'sources': [
24 'device_monitor_linux.cc', 24 'device_monitor_linux.cc',
25 'device_monitor_linux.h', 25 'device_monitor_linux.h',
26 'hid_collection_info.cc',
27 'hid_collection_info.h',
26 'hid_connection.cc', 28 'hid_connection.cc',
27 'hid_connection.h', 29 'hid_connection.h',
28 'hid_connection_linux.cc', 30 'hid_connection_linux.cc',
29 'hid_connection_linux.h', 31 'hid_connection_linux.h',
30 'hid_connection_mac.cc', 32 'hid_connection_mac.cc',
31 'hid_connection_mac.h', 33 'hid_connection_mac.h',
32 'hid_connection_win.cc', 34 'hid_connection_win.cc',
33 'hid_connection_win.h', 35 'hid_connection_win.h',
34 'hid_device_info.cc', 36 'hid_device_info.cc',
35 'hid_device_info.h', 37 'hid_device_info.h',
(...skipping 12 matching lines...) Expand all
48 'hid_usage_and_page.cc', 50 'hid_usage_and_page.cc',
49 'hid_usage_and_page.h', 51 'hid_usage_and_page.h',
50 'hid_utils_mac.cc', 52 'hid_utils_mac.cc',
51 'hid_utils_mac.h', 53 'hid_utils_mac.h',
52 'input_service_linux.cc', 54 'input_service_linux.cc',
53 'input_service_linux.h', 55 'input_service_linux.h',
54 ], 56 ],
55 }, 57 },
56 ], 58 ],
57 } 59 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698