| 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 sources += [ | 73 sources += [ |
| 74 "hid/hid_connection_unittest.cc", | 74 "hid/hid_connection_unittest.cc", |
| 75 "hid/hid_device_filter_unittest.cc", | 75 "hid/hid_device_filter_unittest.cc", |
| 76 "hid/hid_report_descriptor_unittest.cc", | 76 "hid/hid_report_descriptor_unittest.cc", |
| 77 "hid/input_service_linux_unittest.cc", | 77 "hid/input_service_linux_unittest.cc", |
| 78 "hid/test_report_descriptors.cc", | 78 "hid/test_report_descriptors.cc", |
| 79 "hid/test_report_descriptors.h", | 79 "hid/test_report_descriptors.h", |
| 80 "serial/data_sink_unittest.cc", | 80 "serial/data_sink_unittest.cc", |
| 81 "serial/data_source_unittest.cc", | 81 "serial/data_source_unittest.cc", |
| 82 "serial/serial_connection_unittest.cc", | 82 "serial/serial_connection_unittest.cc", |
| 83 "serial/serial_io_handler_posix_unittest.cc", |
| 83 "serial/serial_service_unittest.cc", | 84 "serial/serial_service_unittest.cc", |
| 84 ] | 85 ] |
| 85 deps += [ | 86 deps += [ |
| 86 "//device/hid", | 87 "//device/hid", |
| 87 "//device/serial", | 88 "//device/serial", |
| 88 "//device/serial:test_support", | 89 "//device/serial:test_support", |
| 89 ] | 90 ] |
| 90 } | 91 } |
| 91 | 92 |
| 92 if (use_udev) { | 93 if (use_udev) { |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 } | 160 } |
| 160 | 161 |
| 161 android_library("bluetooth_test_java") { | 162 android_library("bluetooth_test_java") { |
| 162 java_files = bluetooth_java_sources_needing_jni | 163 java_files = bluetooth_java_sources_needing_jni |
| 163 deps = [ | 164 deps = [ |
| 164 "//base:base_java", | 165 "//base:base_java", |
| 165 "//device/bluetooth:java", | 166 "//device/bluetooth:java", |
| 166 ] | 167 ] |
| 167 } | 168 } |
| 168 } | 169 } |
| OLD | NEW |