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 29 matching lines...) Expand all Loading... |
40 "bluetooth/test/bluetooth_gatt_server_test.cc", | 40 "bluetooth/test/bluetooth_gatt_server_test.cc", |
41 "bluetooth/test/bluetooth_gatt_server_test.h", | 41 "bluetooth/test/bluetooth_gatt_server_test.h", |
42 "bluetooth/test/bluetooth_test.cc", | 42 "bluetooth/test/bluetooth_test.cc", |
43 "bluetooth/test/bluetooth_test.h", | 43 "bluetooth/test/bluetooth_test.h", |
44 "bluetooth/test/bluetooth_test_android.cc", | 44 "bluetooth/test/bluetooth_test_android.cc", |
45 "bluetooth/test/bluetooth_test_android.h", | 45 "bluetooth/test/bluetooth_test_android.h", |
46 "bluetooth/test/bluetooth_test_mac.h", | 46 "bluetooth/test/bluetooth_test_mac.h", |
47 "bluetooth/test/bluetooth_test_mac.mm", | 47 "bluetooth/test/bluetooth_test_mac.mm", |
48 "bluetooth/test/bluetooth_test_win.cc", | 48 "bluetooth/test/bluetooth_test_win.cc", |
49 "bluetooth/test/bluetooth_test_win.h", | 49 "bluetooth/test/bluetooth_test_win.h", |
50 "bluetooth/test/mock_bluetooth_cbcharacteristic_mac.h", | |
51 "bluetooth/test/mock_bluetooth_cbcharacteristic_mac.mm", | |
52 "bluetooth/test/mock_bluetooth_cbperipheral_mac.h", | 50 "bluetooth/test/mock_bluetooth_cbperipheral_mac.h", |
53 "bluetooth/test/mock_bluetooth_cbperipheral_mac.mm", | 51 "bluetooth/test/mock_bluetooth_cbperipheral_mac.mm", |
54 "bluetooth/test/mock_bluetooth_cbservice_mac.h", | 52 "bluetooth/test/mock_bluetooth_cbservice_mac.h", |
55 "bluetooth/test/mock_bluetooth_cbservice_mac.mm", | 53 "bluetooth/test/mock_bluetooth_cbservice_mac.mm", |
56 "bluetooth/test/mock_bluetooth_central_manager_mac.h", | 54 "bluetooth/test/mock_bluetooth_central_manager_mac.h", |
57 "bluetooth/test/mock_bluetooth_central_manager_mac.mm", | 55 "bluetooth/test/mock_bluetooth_central_manager_mac.mm", |
58 "bluetooth/test/test_bluetooth_adapter_observer.cc", | 56 "bluetooth/test/test_bluetooth_adapter_observer.cc", |
59 "bluetooth/test/test_bluetooth_adapter_observer.h", | 57 "bluetooth/test/test_bluetooth_adapter_observer.h", |
60 "bluetooth/test/test_bluetooth_local_gatt_service_delegate.cc", | 58 "bluetooth/test/test_bluetooth_local_gatt_service_delegate.cc", |
61 "bluetooth/test/test_bluetooth_local_gatt_service_delegate.h", | 59 "bluetooth/test/test_bluetooth_local_gatt_service_delegate.h", |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
226 } | 224 } |
227 | 225 |
228 android_library("bluetooth_test_java") { | 226 android_library("bluetooth_test_java") { |
229 java_files = bluetooth_java_sources_needing_jni | 227 java_files = bluetooth_java_sources_needing_jni |
230 deps = [ | 228 deps = [ |
231 "//base:base_java", | 229 "//base:base_java", |
232 "//device/bluetooth:java", | 230 "//device/bluetooth:java", |
233 ] | 231 ] |
234 } | 232 } |
235 } | 233 } |
OLD | NEW |