OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
6 import("//testing/libfuzzer/fuzzer_test.gni") | 6 import("//testing/libfuzzer/fuzzer_test.gni") |
7 | 7 |
8 assert(!is_ios) | 8 assert(!is_ios) |
9 | 9 |
10 if (is_android) { | 10 if (is_android) { |
(...skipping 26 matching lines...) Expand all Loading... |
37 "usb_endpoint_android.cc", | 37 "usb_endpoint_android.cc", |
38 "usb_endpoint_android.h", | 38 "usb_endpoint_android.h", |
39 "usb_ids.cc", | 39 "usb_ids.cc", |
40 "usb_ids.h", | 40 "usb_ids.h", |
41 "usb_interface_android.cc", | 41 "usb_interface_android.cc", |
42 "usb_interface_android.h", | 42 "usb_interface_android.h", |
43 "usb_service.cc", | 43 "usb_service.cc", |
44 "usb_service.h", | 44 "usb_service.h", |
45 "usb_service_android.cc", | 45 "usb_service_android.cc", |
46 "usb_service_android.h", | 46 "usb_service_android.h", |
| 47 "usb_service_win.cc", |
| 48 "usb_service_win.h", |
47 "webusb_descriptors.cc", | 49 "webusb_descriptors.cc", |
48 "webusb_descriptors.h", | 50 "webusb_descriptors.h", |
49 generated_ids, | 51 generated_ids, |
50 ] | 52 ] |
51 | 53 |
52 deps = [ | 54 deps = [ |
53 ":usb_device_ids", | 55 ":usb_device_ids", |
54 "//base", | 56 "//base", |
55 "//base/third_party/dynamic_annotations", | 57 "//base/third_party/dynamic_annotations", |
56 "//components/device_event_log", | 58 "//components/device_event_log", |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
203 jni_package = "device" | 205 jni_package = "device" |
204 } | 206 } |
205 | 207 |
206 android_library("java") { | 208 android_library("java") { |
207 java_files = java_sources_needing_jni | 209 java_files = java_sources_needing_jni |
208 deps = [ | 210 deps = [ |
209 "//base:base_java", | 211 "//base:base_java", |
210 ] | 212 ] |
211 } | 213 } |
212 } | 214 } |
OLD | NEW |