Chromium Code Reviews| 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.gni") | 5 import("vr/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/rules.gni") # For generate_jni(). | 10 import("//build/config/android/rules.gni") # For generate_jni(). |
| (...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 293 "//third_party/android_tools:android_support_annotations_java", | 293 "//third_party/android_tools:android_support_annotations_java", |
| 294 ] | 294 ] |
| 295 | 295 |
| 296 srcjar_deps = [ ":bluetooth_test_javagen" ] | 296 srcjar_deps = [ ":bluetooth_test_javagen" ] |
| 297 } | 297 } |
| 298 | 298 |
| 299 junit_binary("device_junit_tests") { | 299 junit_binary("device_junit_tests") { |
| 300 java_files = [ | 300 java_files = [ |
| 301 "gamepad/android/junit/src/org/chromium/device/gamepad/GamepadMappingsTest .java", | 301 "gamepad/android/junit/src/org/chromium/device/gamepad/GamepadMappingsTest .java", |
| 302 "generic_sensor/android/junit/src/org/chromium/device/sensors/PlatformSens orAndProviderTest.java", | 302 "generic_sensor/android/junit/src/org/chromium/device/sensors/PlatformSens orAndProviderTest.java", |
| 303 "geolocation/android/junit/src/org/chromium/device/geolocation/LocationPro viderTest.java", | |
| 303 "nfc/android/junit/src/org/chromium/device/nfc/NFCTest.java", | 304 "nfc/android/junit/src/org/chromium/device/nfc/NFCTest.java", |
| 304 ] | 305 ] |
| 305 deps = [ | 306 deps = [ |
| 306 "//base:base_java", | 307 "//base:base_java", |
| 307 "//base:base_java_test_support", | 308 "//base:base_java_test_support", |
| 308 "//device/gamepad:java", | 309 "//device/gamepad:java", |
| 309 "//device/generic_sensor:java", | 310 "//device/generic_sensor:java", |
| 310 "//device/generic_sensor/public/interfaces:interfaces_java", | 311 "//device/generic_sensor/public/interfaces:interfaces_java", |
| 312 "//device/geolocation:geolocation_java", | |
| 313 "//device/geolocation:geolocation_java_test_support", | |
| 311 "//device/nfc:mojo_bindings_java", | 314 "//device/nfc:mojo_bindings_java", |
| 312 "//device/nfc/android:java", | 315 "//device/nfc/android:java", |
| 313 "//mojo/public/java:bindings_java", | 316 "//mojo/public/java:bindings_java", |
| 314 "//third_party/android_tools:android_support_annotations_java", | 317 "//third_party/android_tools:android_support_annotations_java", |
| 318 google_play_services_library, | |
|
agrieve
2017/04/20 15:22:23
nit: please use "google_play_services_package" rat
mcasas
2017/04/20 18:59:32
That didn't work exactly for me, so instead I'm re
| |
| 315 ] | 319 ] |
| 316 srcjar_deps = [ "//device/gamepad:java_enums_srcjar" ] | 320 srcjar_deps = [ "//device/gamepad:java_enums_srcjar" ] |
| 317 } | 321 } |
| 318 | 322 |
| 319 java_cpp_enum("bluetooth_test_javagen") { | 323 java_cpp_enum("bluetooth_test_javagen") { |
| 320 sources = [ | 324 sources = [ |
| 321 "bluetooth/test/bluetooth_test.h", | 325 "bluetooth/test/bluetooth_test.h", |
| 322 ] | 326 ] |
| 323 } | 327 } |
| 324 } | 328 } |
| OLD | NEW |