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 24 matching lines...) Expand all Loading... |
35 "bluetooth/bluetooth_task_manager_win_unittest.cc", | 35 "bluetooth/bluetooth_task_manager_win_unittest.cc", |
36 "bluetooth/bluetooth_uuid_unittest.cc", | 36 "bluetooth/bluetooth_uuid_unittest.cc", |
37 "bluetooth/test/bluetooth_test.cc", | 37 "bluetooth/test/bluetooth_test.cc", |
38 "bluetooth/test/bluetooth_test.h", | 38 "bluetooth/test/bluetooth_test.h", |
39 "bluetooth/test/bluetooth_test_android.cc", | 39 "bluetooth/test/bluetooth_test_android.cc", |
40 "bluetooth/test/bluetooth_test_android.h", | 40 "bluetooth/test/bluetooth_test_android.h", |
41 "bluetooth/test/bluetooth_test_mac.h", | 41 "bluetooth/test/bluetooth_test_mac.h", |
42 "bluetooth/test/bluetooth_test_mac.mm", | 42 "bluetooth/test/bluetooth_test_mac.mm", |
43 "bluetooth/test/bluetooth_test_win.cc", | 43 "bluetooth/test/bluetooth_test_win.cc", |
44 "bluetooth/test/bluetooth_test_win.h", | 44 "bluetooth/test/bluetooth_test_win.h", |
| 45 "bluetooth/test/mock_bluetooth_cbperipheral_mac.h", |
| 46 "bluetooth/test/mock_bluetooth_cbperipheral_mac.mm", |
| 47 "bluetooth/test/mock_bluetooth_central_manager_mac.h", |
| 48 "bluetooth/test/mock_bluetooth_central_manager_mac.mm", |
45 "bluetooth/test/test_bluetooth_adapter_observer.cc", | 49 "bluetooth/test/test_bluetooth_adapter_observer.cc", |
46 "bluetooth/test/test_bluetooth_adapter_observer.h", | 50 "bluetooth/test/test_bluetooth_adapter_observer.h", |
47 "nfc/nfc_chromeos_unittest.cc", | 51 "nfc/nfc_chromeos_unittest.cc", |
48 "nfc/nfc_ndef_record_unittest.cc", | 52 "nfc/nfc_ndef_record_unittest.cc", |
49 "test/run_all_unittests.cc", | 53 "test/run_all_unittests.cc", |
50 ] | 54 ] |
51 | 55 |
52 deps = [ | 56 deps = [ |
53 "//base/test:test_support", | 57 "//base/test:test_support", |
54 "//device/battery", | 58 "//device/battery", |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 } | 204 } |
201 | 205 |
202 android_library("bluetooth_test_java") { | 206 android_library("bluetooth_test_java") { |
203 java_files = bluetooth_java_sources_needing_jni | 207 java_files = bluetooth_java_sources_needing_jni |
204 deps = [ | 208 deps = [ |
205 "//base:base_java", | 209 "//base:base_java", |
206 "//device/bluetooth:java", | 210 "//device/bluetooth:java", |
207 ] | 211 ] |
208 } | 212 } |
209 } | 213 } |
OLD | NEW |