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 "//mojo/public/cpp/bindings/tests:mojo_public_bindings_test_utils", | 127 "//mojo/public/cpp/bindings/tests:mojo_public_bindings_test_utils", |
128 "//mojo/public/cpp/environment", | 128 "//mojo/public/cpp/environment", |
129 "//mojo/public/cpp/test_support:test_utils", | 129 "//mojo/public/cpp/test_support:test_utils", |
130 "//third_party/mojo/src/mojo/edk/system", | 130 "//third_party/mojo/src/mojo/edk/system", |
131 ] | 131 ] |
132 defines = [ "UNIT_TEST" ] | 132 defines = [ "UNIT_TEST" ] |
133 } | 133 } |
134 | 134 |
135 android_apk("mojo_test_apk") { | 135 android_apk("mojo_test_apk") { |
136 testonly = true | 136 testonly = true |
| 137 create_dist_ijar = true |
137 deps = [ | 138 deps = [ |
138 ":mojo_java_unittests", | 139 ":mojo_java_unittests", |
139 ":mojo_javatests", | 140 ":mojo_javatests", |
140 ":system_java", | 141 ":system_java", |
141 "//base:base_java", | 142 "//base:base_java", |
142 "//mojo/public/interfaces/bindings/tests:test_interfaces", | 143 "//mojo/public/interfaces/bindings/tests:test_interfaces", |
143 "//mojo/public/java:bindings", | 144 "//mojo/public/java:bindings", |
144 ] | 145 ] |
145 native_libs = [ "libmojo_java_unittests.so" ] | 146 native_libs = [ "libmojo_java_unittests.so" ] |
146 apk_name = "MojoTest" | 147 apk_name = "MojoTest" |
147 android_manifest = "javatests/AndroidManifest.xml" | 148 android_manifest = "javatests/AndroidManifest.xml" |
148 } | 149 } |
OLD | NEW |