| 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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 "javatests/mojo_test_case.h", | 124 "javatests/mojo_test_case.h", |
| 125 "javatests/validation_test_util.cc", | 125 "javatests/validation_test_util.cc", |
| 126 "javatests/validation_test_util.h", | 126 "javatests/validation_test_util.h", |
| 127 ] | 127 ] |
| 128 | 128 |
| 129 deps = [ | 129 deps = [ |
| 130 ":jni_headers", | 130 ":jni_headers", |
| 131 ":libsystem_java", | 131 ":libsystem_java", |
| 132 ":system_java_jni_headers", | 132 ":system_java_jni_headers", |
| 133 "//base", | 133 "//base", |
| 134 "//base/test:test_support", | 134 "//base/test/:test_support", |
| 135 "//base/test:test_support_main_stub", | |
| 136 "//build/config/sanitizers:deps", | 135 "//build/config/sanitizers:deps", |
| 137 "//mojo/edk/system", | 136 "//mojo/edk/system", |
| 138 "//mojo/public/cpp/bindings/tests:mojo_public_bindings_test_utils", | 137 "//mojo/public/cpp/bindings/tests:mojo_public_bindings_test_utils", |
| 139 "//mojo/public/cpp/test_support:test_utils", | 138 "//mojo/public/cpp/test_support:test_utils", |
| 140 ] | 139 ] |
| 141 defines = [ "UNIT_TEST" ] | 140 defines = [ "UNIT_TEST" ] |
| 142 } | 141 } |
| 143 | 142 |
| 144 instrumentation_test_apk("mojo_test_apk") { | 143 instrumentation_test_apk("mojo_test_apk") { |
| 145 deps = [ | 144 deps = [ |
| 146 ":mojo_javatests", | 145 ":mojo_javatests", |
| 147 ":system_java", | 146 ":system_java", |
| 148 "//base:base_java", | 147 "//base:base_java", |
| 149 "//mojo/public/interfaces/bindings/tests:test_interfaces", | 148 "//mojo/public/interfaces/bindings/tests:test_interfaces", |
| 150 "//mojo/public/java:bindings_java", | 149 "//mojo/public/java:bindings_java", |
| 151 "//third_party/android_support_test_runner:runner_java", | 150 "//third_party/android_support_test_runner:runner_java", |
| 152 ] | 151 ] |
| 153 shared_libraries = [ ":mojo_java_unittests" ] | 152 shared_libraries = [ ":mojo_java_unittests" ] |
| 154 apk_name = "MojoTest" | 153 apk_name = "MojoTest" |
| 155 android_manifest = "javatests/AndroidManifest.xml" | 154 android_manifest = "javatests/AndroidManifest.xml" |
| 156 } | 155 } |
| OLD | NEW |