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

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

Issue 913773002: Created fakes for HID-detection screen testing. Initial browsertest added. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: TaskRunner used for InputServiceProxy. Created 5 years, 9 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
« no previous file with comments | « device/hid/fake_input_service_linux.cc ('k') | device/hid/input_service_linux.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'dependencies': [ 16 'dependencies': [
17 '../../components/components.gyp:device_event_log_component', 17 '../../components/components.gyp:device_event_log_component',
18 '../../net/net.gyp:net', 18 '../../net/net.gyp:net',
19 '../core/core.gyp:device_core', 19 '../core/core.gyp:device_core',
20 ], 20 ],
21 'sources': [ 21 'sources': [
22 'device_monitor_linux.cc', 22 'device_monitor_linux.cc',
23 'device_monitor_linux.h', 23 'device_monitor_linux.h',
24 'fake_input_service_linux.cc',
25 'fake_input_service_linux.h',
24 'hid_collection_info.cc', 26 'hid_collection_info.cc',
25 'hid_collection_info.h', 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',
(...skipping 25 matching lines...) Expand all
59 'dependencies': [ 61 'dependencies': [
60 '../udev_linux/udev.gyp:udev_linux', 62 '../udev_linux/udev.gyp:udev_linux',
61 ], 63 ],
62 }, { # use_udev==0 64 }, { # use_udev==0
63 # The Linux implementation is based on Udev. 65 # The Linux implementation is based on Udev.
64 'sources!': [ 66 'sources!': [
65 'device_monitor_linux.cc', 67 'device_monitor_linux.cc',
66 'device_monitor_linux.h', 68 'device_monitor_linux.h',
67 'hid_service_linux.cc', 69 'hid_service_linux.cc',
68 'hid_service_linux.h', 70 'hid_service_linux.h',
71 'fake_input_service_linux.cc',
72 'fake_input_service_linux.h',
69 'input_service_linux.cc', 73 'input_service_linux.cc',
70 'input_service_linux.h', 74 'input_service_linux.h',
71 ], 75 ],
72 }], 76 }],
73 ], 77 ],
74 }, 78 },
75 ], 79 ],
76 } 80 }
OLDNEW
« no previous file with comments | « device/hid/fake_input_service_linux.cc ('k') | device/hid/input_service_linux.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698