| 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("vr/features/features.gni") | 5 import("vr/features/features.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 if (is_android) { | 9 if (is_android) { |
| 10 import("//build/config/android/config.gni") | 10 import("//build/config/android/config.gni") |
| (...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 287 "//third_party/android_tools:android_support_annotations_java", | 287 "//third_party/android_tools:android_support_annotations_java", |
| 288 ] | 288 ] |
| 289 | 289 |
| 290 srcjar_deps = [ ":bluetooth_test_javagen" ] | 290 srcjar_deps = [ ":bluetooth_test_javagen" ] |
| 291 } | 291 } |
| 292 | 292 |
| 293 junit_binary("device_junit_tests") { | 293 junit_binary("device_junit_tests") { |
| 294 java_files = [ | 294 java_files = [ |
| 295 "gamepad/android/junit/src/org/chromium/device/gamepad/GamepadMappingsTest
.java", | 295 "gamepad/android/junit/src/org/chromium/device/gamepad/GamepadMappingsTest
.java", |
| 296 "geolocation/android/junit/src/org/chromium/device/geolocation/LocationPro
viderTest.java", | 296 "geolocation/android/junit/src/org/chromium/device/geolocation/LocationPro
viderTest.java", |
| 297 "nfc/android/junit/src/org/chromium/device/nfc/NFCTest.java", | |
| 298 ] | 297 ] |
| 299 deps = [ | 298 deps = [ |
| 300 "$google_play_services_package:google_play_services_base_java", | 299 "$google_play_services_package:google_play_services_base_java", |
| 301 "$google_play_services_package:google_play_services_basement_java", | 300 "$google_play_services_package:google_play_services_basement_java", |
| 302 "$google_play_services_package:google_play_services_location_java", | 301 "$google_play_services_package:google_play_services_location_java", |
| 303 "//base:base_java", | 302 "//base:base_java", |
| 304 "//base:base_java_test_support", | 303 "//base:base_java_test_support", |
| 305 "//device/gamepad:java", | 304 "//device/gamepad:java", |
| 306 "//device/geolocation:geolocation_java", | 305 "//device/geolocation:geolocation_java", |
| 307 "//device/geolocation:geolocation_java_test_support", | 306 "//device/geolocation:geolocation_java_test_support", |
| 308 "//device/nfc:mojo_bindings_java", | |
| 309 "//device/nfc/android:java", | |
| 310 "//device/nfc/public/java:nfc_java", | |
| 311 "//mojo/public/java:bindings_java", | 307 "//mojo/public/java:bindings_java", |
| 312 "//third_party/android_tools:android_support_annotations_java", | 308 "//third_party/android_tools:android_support_annotations_java", |
| 313 ] | 309 ] |
| 314 srcjar_deps = [ "//device/gamepad:java_enums_srcjar" ] | 310 srcjar_deps = [ "//device/gamepad:java_enums_srcjar" ] |
| 315 } | 311 } |
| 316 | 312 |
| 317 java_cpp_enum("bluetooth_test_javagen") { | 313 java_cpp_enum("bluetooth_test_javagen") { |
| 318 sources = [ | 314 sources = [ |
| 319 "bluetooth/test/bluetooth_test.h", | 315 "bluetooth/test/bluetooth_test.h", |
| 320 ] | 316 ] |
| 321 } | 317 } |
| 322 } | 318 } |
| OLD | NEW |