| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 "nfc/nfc_chromeos_unittest.cc", | 63 "nfc/nfc_chromeos_unittest.cc", |
| 64 "nfc/nfc_ndef_record_unittest.cc", | 64 "nfc/nfc_ndef_record_unittest.cc", |
| 65 "test/run_all_unittests.cc", | 65 "test/run_all_unittests.cc", |
| 66 "vr/vr_device_manager_unittest.cc", | 66 "vr/vr_device_manager_unittest.cc", |
| 67 "vr/vr_service_impl_unittest.cc", |
| 67 ] | 68 ] |
| 68 | 69 |
| 69 deps = [ | 70 deps = [ |
| 70 "//base/test:test_support", | 71 "//base/test:test_support", |
| 71 "//device/battery", | 72 "//device/battery", |
| 72 "//device/battery:mojo_bindings", | 73 "//device/battery:mojo_bindings", |
| 73 "//device/bluetooth", | 74 "//device/bluetooth", |
| 74 "//device/bluetooth:mocks", | 75 "//device/bluetooth:mocks", |
| 75 "//device/gamepad", | 76 "//device/gamepad", |
| 76 "//device/gamepad:test_helpers", | 77 "//device/gamepad:test_helpers", |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 junit_binary("device_junit_tests") { | 244 junit_binary("device_junit_tests") { |
| 244 java_files = [ "gamepad/android/junit/src/org/chromium/device/gamepad/Gamepa
dMappingsTest.java" ] | 245 java_files = [ "gamepad/android/junit/src/org/chromium/device/gamepad/Gamepa
dMappingsTest.java" ] |
| 245 deps = [ | 246 deps = [ |
| 246 "//base:base_java", | 247 "//base:base_java", |
| 247 "//base:base_java_test_support", | 248 "//base:base_java_test_support", |
| 248 "//device/gamepad:java", | 249 "//device/gamepad:java", |
| 249 ] | 250 ] |
| 250 srcjar_deps = [ "//device/gamepad:java_enums_srcjar" ] | 251 srcjar_deps = [ "//device/gamepad:java_enums_srcjar" ] |
| 251 } | 252 } |
| 252 } | 253 } |
| OLD | NEW |