| 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 22 matching lines...) Expand all Loading... |
| 33 "bluetooth/bluetooth_gatt_chromeos_unittest.cc", | 33 "bluetooth/bluetooth_gatt_chromeos_unittest.cc", |
| 34 "bluetooth/bluetooth_low_energy_win_unittest.cc", | 34 "bluetooth/bluetooth_low_energy_win_unittest.cc", |
| 35 "bluetooth/bluetooth_service_record_win_unittest.cc", | 35 "bluetooth/bluetooth_service_record_win_unittest.cc", |
| 36 "bluetooth/bluetooth_socket_chromeos_unittest.cc", | 36 "bluetooth/bluetooth_socket_chromeos_unittest.cc", |
| 37 "bluetooth/bluetooth_task_manager_win_unittest.cc", | 37 "bluetooth/bluetooth_task_manager_win_unittest.cc", |
| 38 "bluetooth/bluetooth_uuid_unittest.cc", | 38 "bluetooth/bluetooth_uuid_unittest.cc", |
| 39 "bluetooth/test/bluetooth_test.cc", | 39 "bluetooth/test/bluetooth_test.cc", |
| 40 "bluetooth/test/bluetooth_test.h", | 40 "bluetooth/test/bluetooth_test.h", |
| 41 "bluetooth/test/bluetooth_test_android.cc", | 41 "bluetooth/test/bluetooth_test_android.cc", |
| 42 "bluetooth/test/bluetooth_test_android.h", | 42 "bluetooth/test/bluetooth_test_android.h", |
| 43 "bluetooth/test/bluetooth_test_mac.h", |
| 44 "bluetooth/test/bluetooth_test_mac.mm", |
| 43 "bluetooth/test/test_bluetooth_adapter_observer.cc", | 45 "bluetooth/test/test_bluetooth_adapter_observer.cc", |
| 44 "bluetooth/test/test_bluetooth_adapter_observer.h", | 46 "bluetooth/test/test_bluetooth_adapter_observer.h", |
| 45 "nfc/nfc_chromeos_unittest.cc", | 47 "nfc/nfc_chromeos_unittest.cc", |
| 46 "nfc/nfc_ndef_record_unittest.cc", | 48 "nfc/nfc_ndef_record_unittest.cc", |
| 47 "test/run_all_unittests.cc", | 49 "test/run_all_unittests.cc", |
| 48 ] | 50 ] |
| 49 | 51 |
| 50 deps = [ | 52 deps = [ |
| 51 "//base/test:test_support", | 53 "//base/test:test_support", |
| 52 "//device/battery", | 54 "//device/battery", |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 } | 163 } |
| 162 | 164 |
| 163 android_library("bluetooth_test_java") { | 165 android_library("bluetooth_test_java") { |
| 164 java_files = bluetooth_java_sources_needing_jni | 166 java_files = bluetooth_java_sources_needing_jni |
| 165 deps = [ | 167 deps = [ |
| 166 "//base:base_java", | 168 "//base:base_java", |
| 167 "//device/bluetooth:java", | 169 "//device/bluetooth:java", |
| 168 ] | 170 ] |
| 169 } | 171 } |
| 170 } | 172 } |
| OLD | NEW |