| 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 "//third_party/mojo/src/mojo/public/interfaces/bindings/tests:test_interface
s_java", | 96 "//third_party/mojo/src/mojo/public/interfaces/bindings/tests:test_interface
s_java", |
| 97 "//third_party/mojo/src/mojo/public/java:bindings", | 97 "//third_party/mojo/src/mojo/public/java:bindings", |
| 98 "//third_party/mojo/src/mojo/public/java:system", | 98 "//third_party/mojo/src/mojo/public/java:system", |
| 99 ] | 99 ] |
| 100 } | 100 } |
| 101 | 101 |
| 102 shared_library("mojo_java_unittests") { | 102 shared_library("mojo_java_unittests") { |
| 103 testonly = true | 103 testonly = true |
| 104 | 104 |
| 105 sources = [ | 105 sources = [ |
| 106 "javatests/init_library.cc", |
| 106 "javatests/mojo_test_case.cc", | 107 "javatests/mojo_test_case.cc", |
| 107 "javatests/mojo_test_case.h", | 108 "javatests/mojo_test_case.h", |
| 108 "javatests/init_library.cc", | |
| 109 "javatests/validation_test_util.cc", | 109 "javatests/validation_test_util.cc", |
| 110 "javatests/validation_test_util.h", | 110 "javatests/validation_test_util.h", |
| 111 ] | 111 ] |
| 112 | 112 |
| 113 deps = [ | 113 deps = [ |
| 114 ":jni_headers", | 114 ":jni_headers", |
| 115 ":libsystem_java", | 115 ":libsystem_java", |
| 116 ":system_java_jni_headers", | 116 ":system_java_jni_headers", |
| 117 "//base", | 117 "//base", |
| 118 "//base/test/:test_support", | 118 "//base/test/:test_support", |
| (...skipping 13 matching lines...) Expand all Loading... |
| 132 ":mojo_java_unittests", | 132 ":mojo_java_unittests", |
| 133 ":system_java", | 133 ":system_java", |
| 134 "//base:base_java", | 134 "//base:base_java", |
| 135 "//third_party/mojo/src/mojo/public/java:bindings", | 135 "//third_party/mojo/src/mojo/public/java:bindings", |
| 136 "//third_party/mojo/src/mojo/public/interfaces/bindings/tests:test_interface
s", | 136 "//third_party/mojo/src/mojo/public/interfaces/bindings/tests:test_interface
s", |
| 137 ] | 137 ] |
| 138 native_libs = [ "libmojo_java_unittests.so" ] | 138 native_libs = [ "libmojo_java_unittests.so" ] |
| 139 apk_name = "MojoTest" | 139 apk_name = "MojoTest" |
| 140 android_manifest = "javatests/AndroidManifest.xml" | 140 android_manifest = "javatests/AndroidManifest.xml" |
| 141 } | 141 } |
| OLD | NEW |