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

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: FakeInputServiceLinux used instead of FakeInputServiceProxy. Created 5 years, 10 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 'dependencies': [ 16 'dependencies': [
17 '../core/core.gyp:device_core', 17 '../core/core.gyp:device_core',
18 ], 18 ],
19 'sources': [ 19 'sources': [
20 'device_monitor_linux.cc', 20 'device_monitor_linux.cc',
21 'device_monitor_linux.h', 21 'device_monitor_linux.h',
22 'fake_input_service_linux.cc',
Nikita (slow) 2015/02/13 12:31:45 You'll need to update device/hid/BUILD.gn as well.
merkulova 2015/02/13 12:58:06 Already done.
23 'fake_input_service_linux.h',
22 'hid_collection_info.cc', 24 'hid_collection_info.cc',
23 'hid_collection_info.h', 25 'hid_collection_info.h',
24 'hid_connection.cc', 26 'hid_connection.cc',
25 'hid_connection.h', 27 'hid_connection.h',
26 'hid_connection_linux.cc', 28 'hid_connection_linux.cc',
27 'hid_connection_linux.h', 29 'hid_connection_linux.h',
28 'hid_connection_mac.cc', 30 'hid_connection_mac.cc',
29 'hid_connection_mac.h', 31 'hid_connection_mac.h',
30 'hid_connection_win.cc', 32 'hid_connection_win.cc',
31 'hid_connection_win.h', 33 'hid_connection_win.h',
(...skipping 25 matching lines...) Expand all
57 'dependencies': [ 59 'dependencies': [
58 '../udev_linux/udev.gyp:udev_linux', 60 '../udev_linux/udev.gyp:udev_linux',
59 ], 61 ],
60 }, { # use_udev==0 62 }, { # use_udev==0
61 # The Linux implementation is based on Udev. 63 # The Linux implementation is based on Udev.
62 'sources!': [ 64 'sources!': [
63 'device_monitor_linux.cc', 65 'device_monitor_linux.cc',
64 'device_monitor_linux.h', 66 'device_monitor_linux.h',
65 'hid_service_linux.cc', 67 'hid_service_linux.cc',
66 'hid_service_linux.h', 68 'hid_service_linux.h',
69 'fake_input_service_linux.cc',
70 'fake_input_service_linux.h',
67 'input_service_linux.cc', 71 'input_service_linux.cc',
68 'input_service_linux.h', 72 'input_service_linux.h',
69 ], 73 ],
70 }], 74 }],
71 ], 75 ],
72 }, 76 },
73 ], 77 ],
74 } 78 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698