| 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 ":system_java", | 10 ":system_java", |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 "javatests/validation_test_util.cc", | 118 "javatests/validation_test_util.cc", |
| 119 "javatests/validation_test_util.h", | 119 "javatests/validation_test_util.h", |
| 120 ] | 120 ] |
| 121 | 121 |
| 122 deps = [ | 122 deps = [ |
| 123 ":jni_headers", | 123 ":jni_headers", |
| 124 ":libsystem_java", | 124 ":libsystem_java", |
| 125 ":system_java_jni_headers", | 125 ":system_java_jni_headers", |
| 126 "//base", | 126 "//base", |
| 127 "//base/test/:test_support", | 127 "//base/test/:test_support", |
| 128 "//build/config/sanitizers:deps", |
| 128 "//mojo/message_pump", | 129 "//mojo/message_pump", |
| 129 "//third_party/mojo/src/mojo/edk/system", | 130 "//third_party/mojo/src/mojo/edk/system", |
| 130 "//third_party/mojo/src/mojo/public/cpp/bindings/tests:mojo_public_bindings_
test_utils", | 131 "//third_party/mojo/src/mojo/public/cpp/bindings/tests:mojo_public_bindings_
test_utils", |
| 131 "//third_party/mojo/src/mojo/public/cpp/test_support:test_utils", | 132 "//third_party/mojo/src/mojo/public/cpp/test_support:test_utils", |
| 132 "//third_party/mojo/src/mojo/public/cpp/environment", | 133 "//third_party/mojo/src/mojo/public/cpp/environment", |
| 133 ] | 134 ] |
| 134 defines = [ "UNIT_TEST" ] | 135 defines = [ "UNIT_TEST" ] |
| 135 } | 136 } |
| 136 | 137 |
| 137 android_apk("mojo_test_apk") { | 138 android_apk("mojo_test_apk") { |
| 138 testonly = true | 139 testonly = true |
| 139 deps = [ | 140 deps = [ |
| 140 ":mojo_javatests", | 141 ":mojo_javatests", |
| 141 ":mojo_java_unittests", | 142 ":mojo_java_unittests", |
| 142 ":system_java", | 143 ":system_java", |
| 143 "//base:base_java", | 144 "//base:base_java", |
| 144 "//third_party/mojo/src/mojo/public/java:bindings", | 145 "//third_party/mojo/src/mojo/public/java:bindings", |
| 145 "//third_party/mojo/src/mojo/public/interfaces/bindings/tests:test_interface
s", | 146 "//third_party/mojo/src/mojo/public/interfaces/bindings/tests:test_interface
s", |
| 146 ] | 147 ] |
| 147 native_libs = [ "libmojo_java_unittests.so" ] | 148 native_libs = [ "libmojo_java_unittests.so" ] |
| 148 apk_name = "MojoTest" | 149 apk_name = "MojoTest" |
| 149 android_manifest = "javatests/AndroidManifest.xml" | 150 android_manifest = "javatests/AndroidManifest.xml" |
| 150 } | 151 } |
| OLD | NEW |