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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 "usb/webusb_descriptors_unittest.cc", | 163 "usb/webusb_descriptors_unittest.cc", |
164 ] | 164 ] |
165 deps += [ | 165 deps += [ |
166 "//device/base", | 166 "//device/base", |
167 "//device/base:mocks", | 167 "//device/base:mocks", |
168 "//device/u2f", | 168 "//device/u2f", |
169 "//device/usb", | 169 "//device/usb", |
170 "//device/usb:test_support", | 170 "//device/usb:test_support", |
171 "//device/usb/mojo", | 171 "//device/usb/mojo", |
172 "//device/usb/public/interfaces", | 172 "//device/usb/public/interfaces", |
| 173 "//net:test_support", |
173 ] | 174 ] |
174 } | 175 } |
175 | 176 |
176 # UsbContext is a libusb-specific object. | 177 # UsbContext is a libusb-specific object. |
177 if (is_mac || is_win) { | 178 if (is_mac || is_win) { |
178 sources += [ "usb/usb_context_unittest.cc" ] | 179 sources += [ "usb/usb_context_unittest.cc" ] |
179 deps += [ "//third_party/libusb" ] | 180 deps += [ "//third_party/libusb" ] |
180 } | 181 } |
181 | 182 |
182 if (is_android) { | 183 if (is_android) { |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
305 ] | 306 ] |
306 srcjar_deps = [ "//device/gamepad:java_enums_srcjar" ] | 307 srcjar_deps = [ "//device/gamepad:java_enums_srcjar" ] |
307 } | 308 } |
308 | 309 |
309 java_cpp_enum("bluetooth_test_javagen") { | 310 java_cpp_enum("bluetooth_test_javagen") { |
310 sources = [ | 311 sources = [ |
311 "bluetooth/test/bluetooth_test.h", | 312 "bluetooth/test/bluetooth_test.h", |
312 ] | 313 ] |
313 } | 314 } |
314 } | 315 } |
OLD | NEW |