| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 "bluetooth/test/mock_bluetooth_cbperipheral_mac.mm", | 53 "bluetooth/test/mock_bluetooth_cbperipheral_mac.mm", |
| 54 "bluetooth/test/mock_bluetooth_cbservice_mac.h", | 54 "bluetooth/test/mock_bluetooth_cbservice_mac.h", |
| 55 "bluetooth/test/mock_bluetooth_cbservice_mac.mm", | 55 "bluetooth/test/mock_bluetooth_cbservice_mac.mm", |
| 56 "bluetooth/test/mock_bluetooth_central_manager_mac.h", | 56 "bluetooth/test/mock_bluetooth_central_manager_mac.h", |
| 57 "bluetooth/test/mock_bluetooth_central_manager_mac.mm", | 57 "bluetooth/test/mock_bluetooth_central_manager_mac.mm", |
| 58 "bluetooth/test/test_bluetooth_adapter_observer.cc", | 58 "bluetooth/test/test_bluetooth_adapter_observer.cc", |
| 59 "bluetooth/test/test_bluetooth_adapter_observer.h", | 59 "bluetooth/test/test_bluetooth_adapter_observer.h", |
| 60 "bluetooth/test/test_bluetooth_local_gatt_service_delegate.cc", | 60 "bluetooth/test/test_bluetooth_local_gatt_service_delegate.cc", |
| 61 "bluetooth/test/test_bluetooth_local_gatt_service_delegate.h", | 61 "bluetooth/test/test_bluetooth_local_gatt_service_delegate.h", |
| 62 "gamepad/gamepad_provider_unittest.cc", | 62 "gamepad/gamepad_provider_unittest.cc", |
| 63 "generic_sensor/platform_sensor_provider_unittest.cc", |
| 63 "test/run_all_unittests.cc", | 64 "test/run_all_unittests.cc", |
| 64 ] | 65 ] |
| 65 | 66 |
| 66 deps = [ | 67 deps = [ |
| 67 "//base/test:test_support", | 68 "//base/test:test_support", |
| 68 "//device/battery", | 69 "//device/battery", |
| 69 "//device/battery:mojo_bindings", | 70 "//device/battery:mojo_bindings", |
| 70 "//device/bluetooth", | 71 "//device/bluetooth", |
| 71 "//device/bluetooth:mocks", | 72 "//device/bluetooth:mocks", |
| 72 "//device/gamepad", | 73 "//device/gamepad", |
| 73 "//device/gamepad:test_helpers", | 74 "//device/gamepad:test_helpers", |
| 75 "//device/generic_sensor", |
| 76 "//device/generic_sensor:testing", |
| 74 "//device/geolocation:unittests", | 77 "//device/geolocation:unittests", |
| 75 "//device/power_save_blocker", | 78 "//device/power_save_blocker", |
| 76 "//mojo/common", | 79 "//mojo/common", |
| 77 "//mojo/edk/system", | 80 "//mojo/edk/system", |
| 78 "//mojo/public/cpp/bindings", | 81 "//mojo/public/cpp/bindings", |
| 79 "//net", | 82 "//net", |
| 80 "//testing/gmock", | 83 "//testing/gmock", |
| 81 "//testing/gtest", | 84 "//testing/gtest", |
| 82 "//tools/usb_gadget", | 85 "//tools/usb_gadget", |
| 83 "//url", | 86 "//url", |
| (...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 268 ] | 271 ] |
| 269 srcjar_deps = [ "//device/gamepad:java_enums_srcjar" ] | 272 srcjar_deps = [ "//device/gamepad:java_enums_srcjar" ] |
| 270 } | 273 } |
| 271 | 274 |
| 272 java_cpp_enum("bluetooth_test_javagen") { | 275 java_cpp_enum("bluetooth_test_javagen") { |
| 273 sources = [ | 276 sources = [ |
| 274 "bluetooth/test/bluetooth_test.h", | 277 "bluetooth/test/bluetooth_test.h", |
| 275 ] | 278 ] |
| 276 } | 279 } |
| 277 } | 280 } |
| OLD | NEW |