OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
6 | 6 |
7 component("base") { | 7 component("base") { |
8 output_name = "device_base" | 8 output_name = "device_base" |
9 | 9 |
10 sources = [ | 10 sources = [ |
11 "device_client.cc", | 11 "device_client.cc", |
12 "device_client.h", | 12 "device_client.h", |
13 "device_info_query_win.cc", | 13 "device_info_query_win.cc", |
14 "device_info_query_win.h", | 14 "device_info_query_win.h", |
15 "device_monitor_win.cc", | 15 "device_monitor_win.cc", |
16 "device_monitor_win.h", | 16 "device_monitor_win.h", |
| 17 "features.cc", |
| 18 "features.h", |
17 ] | 19 ] |
18 | 20 |
19 defines = [ "DEVICE_BASE_IMPLEMENTATION" ] | 21 defines = [ "DEVICE_BASE_IMPLEMENTATION" ] |
20 | 22 |
21 deps = [] | 23 deps = [] |
22 | 24 |
23 public_deps = [ | 25 public_deps = [ |
24 "//base", | 26 "//base", |
25 ] | 27 ] |
26 | 28 |
(...skipping 18 matching lines...) Expand all Loading... |
45 "mock_device_client.cc", | 47 "mock_device_client.cc", |
46 "mock_device_client.h", | 48 "mock_device_client.h", |
47 ] | 49 ] |
48 | 50 |
49 deps = [ | 51 deps = [ |
50 ":base", | 52 ":base", |
51 "//device/hid:mocks", | 53 "//device/hid:mocks", |
52 "//device/usb:test_support", | 54 "//device/usb:test_support", |
53 ] | 55 ] |
54 } | 56 } |
OLD | NEW |