OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 if (is_android) { | 8 if (is_android) { |
9 import("//build/config/android/rules.gni") # For generate_jni(). | 9 import("//build/config/android/rules.gni") # For generate_jni(). |
10 } | 10 } |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 # Linux, requires udev. | 125 # Linux, requires udev. |
126 if (!is_linux_without_udev && !is_android) { | 126 if (!is_linux_without_udev && !is_android) { |
127 sources += [ | 127 sources += [ |
128 "hid/hid_connection_unittest.cc", | 128 "hid/hid_connection_unittest.cc", |
129 "hid/hid_device_filter_unittest.cc", | 129 "hid/hid_device_filter_unittest.cc", |
130 "hid/hid_report_descriptor_unittest.cc", | 130 "hid/hid_report_descriptor_unittest.cc", |
131 "hid/input_service_linux_unittest.cc", | 131 "hid/input_service_linux_unittest.cc", |
132 "hid/test_report_descriptors.cc", | 132 "hid/test_report_descriptors.cc", |
133 "hid/test_report_descriptors.h", | 133 "hid/test_report_descriptors.h", |
134 "serial/serial_io_handler_posix_unittest.cc", | 134 "serial/serial_io_handler_posix_unittest.cc", |
| 135 "u2f/u2f_enumerate_unittest.cc", |
135 "u2f/u2f_hid_device_unittest.cc", | 136 "u2f/u2f_hid_device_unittest.cc", |
136 ] | 137 ] |
137 deps += [ | 138 deps += [ |
138 "//device/hid", | 139 "//device/hid", |
139 "//device/hid:mocks", | 140 "//device/hid:mocks", |
140 "//device/serial", | 141 "//device/serial", |
141 "//device/serial:test_support", | 142 "//device/serial:test_support", |
142 ] | 143 ] |
143 } | 144 } |
144 | 145 |
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
307 ] | 308 ] |
308 srcjar_deps = [ "//device/gamepad:java_enums_srcjar" ] | 309 srcjar_deps = [ "//device/gamepad:java_enums_srcjar" ] |
309 } | 310 } |
310 | 311 |
311 java_cpp_enum("bluetooth_test_javagen") { | 312 java_cpp_enum("bluetooth_test_javagen") { |
312 sources = [ | 313 sources = [ |
313 "bluetooth/test/bluetooth_test.h", | 314 "bluetooth/test/bluetooth_test.h", |
314 ] | 315 ] |
315 } | 316 } |
316 } | 317 } |
OLD | NEW |