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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 "javatests/src/org/chromium/mojo/bindings/ValidationTestUtil.java", | 91 "javatests/src/org/chromium/mojo/bindings/ValidationTestUtil.java", |
92 "javatests/src/org/chromium/mojo/bindings/ValidationTestUtilTest.java", | 92 "javatests/src/org/chromium/mojo/bindings/ValidationTestUtilTest.java", |
93 "javatests/src/org/chromium/mojo/system/impl/CoreImplTest.java", | 93 "javatests/src/org/chromium/mojo/system/impl/CoreImplTest.java", |
94 ] | 94 ] |
95 | 95 |
96 deps = [ | 96 deps = [ |
97 ":system_java", | 97 ":system_java", |
98 "//base:base_java", | 98 "//base:base_java", |
99 "//base:base_java_test_support", | 99 "//base:base_java_test_support", |
100 "//mojo/public/interfaces/bindings/tests:test_interfaces_java", | 100 "//mojo/public/interfaces/bindings/tests:test_interfaces_java", |
| 101 "//mojo/public/interfaces/bindings/tests:test_mojom_import2_java", |
| 102 "//mojo/public/interfaces/bindings/tests:test_mojom_import_java", |
101 "//mojo/public/java:bindings", | 103 "//mojo/public/java:bindings", |
102 "//mojo/public/java:system", | 104 "//mojo/public/java:system", |
103 ] | 105 ] |
104 } | 106 } |
105 | 107 |
106 shared_library("mojo_java_unittests") { | 108 shared_library("mojo_java_unittests") { |
107 testonly = true | 109 testonly = true |
108 | 110 |
109 sources = [ | 111 sources = [ |
110 "javatests/init_library.cc", | 112 "javatests/init_library.cc", |
(...skipping 24 matching lines...) Expand all Loading... |
135 ":mojo_javatests", | 137 ":mojo_javatests", |
136 ":system_java", | 138 ":system_java", |
137 "//base:base_java", | 139 "//base:base_java", |
138 "//mojo/public/interfaces/bindings/tests:test_interfaces", | 140 "//mojo/public/interfaces/bindings/tests:test_interfaces", |
139 "//mojo/public/java:bindings", | 141 "//mojo/public/java:bindings", |
140 ] | 142 ] |
141 native_libs = [ "libmojo_java_unittests.so" ] | 143 native_libs = [ "libmojo_java_unittests.so" ] |
142 apk_name = "MojoTest" | 144 apk_name = "MojoTest" |
143 android_manifest = "javatests/AndroidManifest.xml" | 145 android_manifest = "javatests/AndroidManifest.xml" |
144 } | 146 } |
OLD | NEW |