| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 "webusb_descriptors.cc", | 47 "webusb_descriptors.cc", |
| 48 "webusb_descriptors.h", | 48 "webusb_descriptors.h", |
| 49 generated_ids, | 49 generated_ids, |
| 50 ] | 50 ] |
| 51 | 51 |
| 52 deps = [ | 52 deps = [ |
| 53 ":usb_device_ids", | 53 ":usb_device_ids", |
| 54 "//base", | 54 "//base", |
| 55 "//base/third_party/dynamic_annotations", | 55 "//base/third_party/dynamic_annotations", |
| 56 "//components/device_event_log", | 56 "//components/device_event_log", |
| 57 "//device/core", | 57 "//device/base", |
| 58 "//net", | 58 "//net", |
| 59 ] | 59 ] |
| 60 | 60 |
| 61 if (use_udev) { | 61 if (use_udev) { |
| 62 sources += [ | 62 sources += [ |
| 63 "usb_service_linux.cc", | 63 "usb_service_linux.cc", |
| 64 "usb_service_linux.h", | 64 "usb_service_linux.h", |
| 65 ] | 65 ] |
| 66 deps += [ "//device/udev_linux" ] | 66 deps += [ "//device/udev_linux" ] |
| 67 } | 67 } |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 jni_package = "device" | 203 jni_package = "device" |
| 204 } | 204 } |
| 205 | 205 |
| 206 android_library("java") { | 206 android_library("java") { |
| 207 java_files = java_sources_needing_jni | 207 java_files = java_sources_needing_jni |
| 208 deps = [ | 208 deps = [ |
| 209 "//base:base_java", | 209 "//base:base_java", |
| 210 ] | 210 ] |
| 211 } | 211 } |
| 212 } | 212 } |
| OLD | NEW |