| 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 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 "//third_party/android_tools:android_support_annotations_java", | 253 "//third_party/android_tools:android_support_annotations_java", |
| 254 ] | 254 ] |
| 255 | 255 |
| 256 srcjar_deps = [ ":bluetooth_test_javagen" ] | 256 srcjar_deps = [ ":bluetooth_test_javagen" ] |
| 257 } | 257 } |
| 258 | 258 |
| 259 junit_binary("device_junit_tests") { | 259 junit_binary("device_junit_tests") { |
| 260 java_files = [ | 260 java_files = [ |
| 261 "gamepad/android/junit/src/org/chromium/device/gamepad/GamepadMappingsTest
.java", | 261 "gamepad/android/junit/src/org/chromium/device/gamepad/GamepadMappingsTest
.java", |
| 262 "generic_sensor/android/junit/src/org/chromium/device/sensors/PlatformSens
orAndProviderTest.java", | 262 "generic_sensor/android/junit/src/org/chromium/device/sensors/PlatformSens
orAndProviderTest.java", |
| 263 "nfc/android/junit/src/org/chromium/device/nfc/NFCTest.java", |
| 263 ] | 264 ] |
| 264 deps = [ | 265 deps = [ |
| 265 "//base:base_java", | 266 "//base:base_java", |
| 266 "//base:base_java_test_support", | 267 "//base:base_java_test_support", |
| 267 "//device/gamepad:java", | 268 "//device/gamepad:java", |
| 268 "//device/generic_sensor:java", | 269 "//device/generic_sensor:java", |
| 269 "//device/generic_sensor/public/interfaces:interfaces_java", | 270 "//device/generic_sensor/public/interfaces:interfaces_java", |
| 271 "//device/nfc:mojo_bindings_java", |
| 272 "//device/nfc/android:java", |
| 273 "//mojo/public/java:bindings", |
| 270 "//third_party/android_tools:android_support_annotations_java", | 274 "//third_party/android_tools:android_support_annotations_java", |
| 271 ] | 275 ] |
| 272 srcjar_deps = [ "//device/gamepad:java_enums_srcjar" ] | 276 srcjar_deps = [ "//device/gamepad:java_enums_srcjar" ] |
| 273 } | 277 } |
| 274 | 278 |
| 275 java_cpp_enum("bluetooth_test_javagen") { | 279 java_cpp_enum("bluetooth_test_javagen") { |
| 276 sources = [ | 280 sources = [ |
| 277 "bluetooth/test/bluetooth_test.h", | 281 "bluetooth/test/bluetooth_test.h", |
| 278 ] | 282 ] |
| 279 } | 283 } |
| 280 } | 284 } |
| OLD | NEW |