| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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/android/rules.gni") | 5 import("//build/config/android/rules.gni") |
| 6 | 6 |
| 7 group("android") { | 7 group("android") { |
| 8 testonly = true | 8 testonly = true |
| 9 deps = [ | 9 deps = [ |
| 10 ":mojo_javatests", | 10 ":mojo_javatests", |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 "javatests/validation_test_util.cc", | 127 "javatests/validation_test_util.cc", |
| 128 "javatests/validation_test_util.h", | 128 "javatests/validation_test_util.h", |
| 129 ] | 129 ] |
| 130 | 130 |
| 131 deps = [ | 131 deps = [ |
| 132 ":jni_headers", | 132 ":jni_headers", |
| 133 ":libsystem_java", | 133 ":libsystem_java", |
| 134 ":system_java_jni_headers", | 134 ":system_java_jni_headers", |
| 135 "//base", | 135 "//base", |
| 136 "//base/test:test_support", | 136 "//base/test:test_support", |
| 137 "//build/config/sanitizers:deps", | 137 "//build/config:exe_and_shlib_deps", |
| 138 "//mojo/edk/system", | 138 "//mojo/edk/system", |
| 139 "//mojo/public/cpp/bindings/tests:mojo_public_bindings_test_utils", | 139 "//mojo/public/cpp/bindings/tests:mojo_public_bindings_test_utils", |
| 140 "//mojo/public/cpp/test_support:test_utils", | 140 "//mojo/public/cpp/test_support:test_utils", |
| 141 ] | 141 ] |
| 142 defines = [ "UNIT_TEST" ] | 142 defines = [ "UNIT_TEST" ] |
| 143 } | 143 } |
| 144 | 144 |
| 145 instrumentation_test_apk("mojo_test_apk") { | 145 instrumentation_test_apk("mojo_test_apk") { |
| 146 deps = [ | 146 deps = [ |
| 147 ":mojo_javatests", | 147 ":mojo_javatests", |
| 148 ":system_java", | 148 ":system_java", |
| 149 "//base:base_java", | 149 "//base:base_java", |
| 150 "//mojo/public/interfaces/bindings/tests:test_interfaces", | 150 "//mojo/public/interfaces/bindings/tests:test_interfaces", |
| 151 "//mojo/public/java:bindings_java", | 151 "//mojo/public/java:bindings_java", |
| 152 "//third_party/android_support_test_runner:runner_java", | 152 "//third_party/android_support_test_runner:runner_java", |
| 153 ] | 153 ] |
| 154 shared_libraries = [ ":mojo_java_unittests" ] | 154 shared_libraries = [ ":mojo_java_unittests" ] |
| 155 apk_name = "MojoTest" | 155 apk_name = "MojoTest" |
| 156 android_manifest = "javatests/AndroidManifest.xml" | 156 android_manifest = "javatests/AndroidManifest.xml" |
| 157 } | 157 } |
| OLD | NEW |