| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 "bluetooth/bluetooth_low_energy_win_unittest.cc", | 42 "bluetooth/bluetooth_low_energy_win_unittest.cc", |
| 43 "bluetooth/bluetooth_service_record_win_unittest.cc", | 43 "bluetooth/bluetooth_service_record_win_unittest.cc", |
| 44 "bluetooth/bluetooth_task_manager_win_unittest.cc", | 44 "bluetooth/bluetooth_task_manager_win_unittest.cc", |
| 45 "bluetooth/bluetooth_uuid_unittest.cc", | 45 "bluetooth/bluetooth_uuid_unittest.cc", |
| 46 "bluetooth/test/bluetooth_test.cc", | 46 "bluetooth/test/bluetooth_test.cc", |
| 47 "bluetooth/test/bluetooth_test.h", | 47 "bluetooth/test/bluetooth_test.h", |
| 48 "bluetooth/test/bluetooth_test_android.cc", | 48 "bluetooth/test/bluetooth_test_android.cc", |
| 49 "bluetooth/test/bluetooth_test_android.h", | 49 "bluetooth/test/bluetooth_test_android.h", |
| 50 "bluetooth/test/bluetooth_test_mac.h", | 50 "bluetooth/test/bluetooth_test_mac.h", |
| 51 "bluetooth/test/bluetooth_test_mac.mm", | 51 "bluetooth/test/bluetooth_test_mac.mm", |
| 52 "bluetooth/test/bluetooth_test_win.cc", |
| 53 "bluetooth/test/bluetooth_test_win.h", |
| 52 "bluetooth/test/test_bluetooth_adapter_observer.cc", | 54 "bluetooth/test/test_bluetooth_adapter_observer.cc", |
| 53 "bluetooth/test/test_bluetooth_adapter_observer.h", | 55 "bluetooth/test/test_bluetooth_adapter_observer.h", |
| 54 "nfc/nfc_chromeos_unittest.cc", | 56 "nfc/nfc_chromeos_unittest.cc", |
| 55 "nfc/nfc_ndef_record_unittest.cc", | 57 "nfc/nfc_ndef_record_unittest.cc", |
| 56 "test/run_all_unittests.cc", | 58 "test/run_all_unittests.cc", |
| 57 ] | 59 ] |
| 58 | 60 |
| 59 deps = [ | 61 deps = [ |
| 60 "//base/test:test_support", | 62 "//base/test:test_support", |
| 61 "//device/battery", | 63 "//device/battery", |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 } | 200 } |
| 199 | 201 |
| 200 android_library("bluetooth_test_java") { | 202 android_library("bluetooth_test_java") { |
| 201 java_files = bluetooth_java_sources_needing_jni | 203 java_files = bluetooth_java_sources_needing_jni |
| 202 deps = [ | 204 deps = [ |
| 203 "//base:base_java", | 205 "//base:base_java", |
| 204 "//device/bluetooth:java", | 206 "//device/bluetooth:java", |
| 205 ] | 207 ] |
| 206 } | 208 } |
| 207 } | 209 } |
| OLD | NEW |