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", |
135 "//build/config/sanitizers:deps", | 136 "//build/config/sanitizers:deps", |
136 "//mojo/edk/system", | 137 "//mojo/edk/system", |
137 "//mojo/public/cpp/bindings/tests:mojo_public_bindings_test_utils", | 138 "//mojo/public/cpp/bindings/tests:mojo_public_bindings_test_utils", |
138 "//mojo/public/cpp/test_support:test_utils", | 139 "//mojo/public/cpp/test_support:test_utils", |
139 ] | 140 ] |
140 defines = [ "UNIT_TEST" ] | 141 defines = [ "UNIT_TEST" ] |
141 } | 142 } |
142 | 143 |
143 instrumentation_test_apk("mojo_test_apk") { | 144 instrumentation_test_apk("mojo_test_apk") { |
144 deps = [ | 145 deps = [ |
145 ":mojo_javatests", | 146 ":mojo_javatests", |
146 ":system_java", | 147 ":system_java", |
147 "//base:base_java", | 148 "//base:base_java", |
148 "//mojo/public/interfaces/bindings/tests:test_interfaces", | 149 "//mojo/public/interfaces/bindings/tests:test_interfaces", |
149 "//mojo/public/java:bindings_java", | 150 "//mojo/public/java:bindings_java", |
150 "//third_party/android_support_test_runner:runner_java", | 151 "//third_party/android_support_test_runner:runner_java", |
151 ] | 152 ] |
152 shared_libraries = [ ":mojo_java_unittests" ] | 153 shared_libraries = [ ":mojo_java_unittests" ] |
153 apk_name = "MojoTest" | 154 apk_name = "MojoTest" |
154 android_manifest = "javatests/AndroidManifest.xml" | 155 android_manifest = "javatests/AndroidManifest.xml" |
155 } | 156 } |
OLD | NEW |