| 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 14 matching lines...) Expand all Loading... |
| 25 "usb_device.cc", | 25 "usb_device.cc", |
| 26 "usb_device.h", | 26 "usb_device.h", |
| 27 "usb_device_android.cc", | 27 "usb_device_android.cc", |
| 28 "usb_device_android.h", | 28 "usb_device_android.h", |
| 29 "usb_device_filter.cc", | 29 "usb_device_filter.cc", |
| 30 "usb_device_filter.h", | 30 "usb_device_filter.h", |
| 31 "usb_device_handle.cc", | 31 "usb_device_handle.cc", |
| 32 "usb_device_handle.h", | 32 "usb_device_handle.h", |
| 33 "usb_device_handle_android.cc", | 33 "usb_device_handle_android.cc", |
| 34 "usb_device_handle_android.h", | 34 "usb_device_handle_android.h", |
| 35 "usb_device_handle_win.cc", |
| 36 "usb_device_handle_win.h", |
| 35 "usb_device_linux.cc", | 37 "usb_device_linux.cc", |
| 36 "usb_device_linux.h", | 38 "usb_device_linux.h", |
| 37 "usb_device_win.cc", | 39 "usb_device_win.cc", |
| 38 "usb_device_win.h", | 40 "usb_device_win.h", |
| 39 "usb_endpoint_android.cc", | 41 "usb_endpoint_android.cc", |
| 40 "usb_endpoint_android.h", | 42 "usb_endpoint_android.h", |
| 41 "usb_ids.cc", | 43 "usb_ids.cc", |
| 42 "usb_ids.h", | 44 "usb_ids.h", |
| 43 "usb_interface_android.cc", | 45 "usb_interface_android.cc", |
| 44 "usb_interface_android.h", | 46 "usb_interface_android.h", |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 jni_package = "device" | 213 jni_package = "device" |
| 212 } | 214 } |
| 213 | 215 |
| 214 android_library("java") { | 216 android_library("java") { |
| 215 java_files = java_sources_needing_jni | 217 java_files = java_sources_needing_jni |
| 216 deps = [ | 218 deps = [ |
| 217 "//base:base_java", | 219 "//base:base_java", |
| 218 ] | 220 ] |
| 219 } | 221 } |
| 220 } | 222 } |
| OLD | NEW |