| 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 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 "//third_party/android_tools:android_support_annotations_java", | 272 "//third_party/android_tools:android_support_annotations_java", |
| 273 ] | 273 ] |
| 274 | 274 |
| 275 srcjar_deps = [ ":bluetooth_test_javagen" ] | 275 srcjar_deps = [ ":bluetooth_test_javagen" ] |
| 276 } | 276 } |
| 277 | 277 |
| 278 junit_binary("device_junit_tests") { | 278 junit_binary("device_junit_tests") { |
| 279 java_files = [ | 279 java_files = [ |
| 280 "gamepad/android/junit/src/org/chromium/device/gamepad/GamepadMappingsTest
.java", | 280 "gamepad/android/junit/src/org/chromium/device/gamepad/GamepadMappingsTest
.java", |
| 281 "generic_sensor/android/junit/src/org/chromium/device/sensors/PlatformSens
orAndProviderTest.java", | 281 "generic_sensor/android/junit/src/org/chromium/device/sensors/PlatformSens
orAndProviderTest.java", |
| 282 "nfc/android/junit/src/org/chromium/device/nfc/NFCTest.java", |
| 282 ] | 283 ] |
| 283 deps = [ | 284 deps = [ |
| 284 "//base:base_java", | 285 "//base:base_java", |
| 285 "//base:base_java_test_support", | 286 "//base:base_java_test_support", |
| 286 "//device/gamepad:java", | 287 "//device/gamepad:java", |
| 287 "//device/generic_sensor:java", | 288 "//device/generic_sensor:java", |
| 288 "//device/generic_sensor/public/interfaces:interfaces_java", | 289 "//device/generic_sensor/public/interfaces:interfaces_java", |
| 290 "//device/nfc:mojo_bindings_java", |
| 291 "//device/nfc/android:java", |
| 292 "//mojo/public/java:bindings_java", |
| 289 "//third_party/android_tools:android_support_annotations_java", | 293 "//third_party/android_tools:android_support_annotations_java", |
| 290 ] | 294 ] |
| 291 srcjar_deps = [ "//device/gamepad:java_enums_srcjar" ] | 295 srcjar_deps = [ "//device/gamepad:java_enums_srcjar" ] |
| 292 } | 296 } |
| 293 | 297 |
| 294 java_cpp_enum("bluetooth_test_javagen") { | 298 java_cpp_enum("bluetooth_test_javagen") { |
| 295 sources = [ | 299 sources = [ |
| 296 "bluetooth/test/bluetooth_test.h", | 300 "bluetooth/test/bluetooth_test.h", |
| 297 ] | 301 ] |
| 298 } | 302 } |
| 299 } | 303 } |
| OLD | NEW |