| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 "bluetooth/test/bluetooth_test.cc", | 44 "bluetooth/test/bluetooth_test.cc", |
| 45 "bluetooth/test/bluetooth_test.h", | 45 "bluetooth/test/bluetooth_test.h", |
| 46 "bluetooth/test/bluetooth_test_android.cc", | 46 "bluetooth/test/bluetooth_test_android.cc", |
| 47 "bluetooth/test/bluetooth_test_android.h", | 47 "bluetooth/test/bluetooth_test_android.h", |
| 48 "bluetooth/test/bluetooth_test_mac.h", | 48 "bluetooth/test/bluetooth_test_mac.h", |
| 49 "bluetooth/test/bluetooth_test_mac.mm", | 49 "bluetooth/test/bluetooth_test_mac.mm", |
| 50 "bluetooth/test/bluetooth_test_win.cc", | 50 "bluetooth/test/bluetooth_test_win.cc", |
| 51 "bluetooth/test/bluetooth_test_win.h", | 51 "bluetooth/test/bluetooth_test_win.h", |
| 52 "bluetooth/test/mock_bluetooth_cbcharacteristic_mac.h", | 52 "bluetooth/test/mock_bluetooth_cbcharacteristic_mac.h", |
| 53 "bluetooth/test/mock_bluetooth_cbcharacteristic_mac.mm", | 53 "bluetooth/test/mock_bluetooth_cbcharacteristic_mac.mm", |
| 54 "bluetooth/test/mock_bluetooth_cbdescriptor_mac.h", |
| 55 "bluetooth/test/mock_bluetooth_cbdescriptor_mac.mm", |
| 54 "bluetooth/test/mock_bluetooth_cbperipheral_mac.h", | 56 "bluetooth/test/mock_bluetooth_cbperipheral_mac.h", |
| 55 "bluetooth/test/mock_bluetooth_cbperipheral_mac.mm", | 57 "bluetooth/test/mock_bluetooth_cbperipheral_mac.mm", |
| 56 "bluetooth/test/mock_bluetooth_cbservice_mac.h", | 58 "bluetooth/test/mock_bluetooth_cbservice_mac.h", |
| 57 "bluetooth/test/mock_bluetooth_cbservice_mac.mm", | 59 "bluetooth/test/mock_bluetooth_cbservice_mac.mm", |
| 58 "bluetooth/test/mock_bluetooth_central_manager_mac.h", | 60 "bluetooth/test/mock_bluetooth_central_manager_mac.h", |
| 59 "bluetooth/test/mock_bluetooth_central_manager_mac.mm", | 61 "bluetooth/test/mock_bluetooth_central_manager_mac.mm", |
| 60 "bluetooth/test/test_bluetooth_adapter_observer.cc", | 62 "bluetooth/test/test_bluetooth_adapter_observer.cc", |
| 61 "bluetooth/test/test_bluetooth_adapter_observer.h", | 63 "bluetooth/test/test_bluetooth_adapter_observer.h", |
| 62 "bluetooth/test/test_bluetooth_local_gatt_service_delegate.cc", | 64 "bluetooth/test/test_bluetooth_local_gatt_service_delegate.cc", |
| 63 "bluetooth/test/test_bluetooth_local_gatt_service_delegate.h", | 65 "bluetooth/test/test_bluetooth_local_gatt_service_delegate.h", |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 ] | 301 ] |
| 300 srcjar_deps = [ "//device/gamepad:java_enums_srcjar" ] | 302 srcjar_deps = [ "//device/gamepad:java_enums_srcjar" ] |
| 301 } | 303 } |
| 302 | 304 |
| 303 java_cpp_enum("bluetooth_test_javagen") { | 305 java_cpp_enum("bluetooth_test_javagen") { |
| 304 sources = [ | 306 sources = [ |
| 305 "bluetooth/test/bluetooth_test.h", | 307 "bluetooth/test/bluetooth_test.h", |
| 306 ] | 308 ] |
| 307 } | 309 } |
| 308 } | 310 } |
| OLD | NEW |