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 23 matching lines...) Expand all Loading... |
34 | 34 |
35 jni_package = "mojo" | 35 jni_package = "mojo" |
36 } | 36 } |
37 | 37 |
38 source_set("libsystem_java") { | 38 source_set("libsystem_java") { |
39 sources = [ | 39 sources = [ |
40 "system/base_run_loop.cc", | 40 "system/base_run_loop.cc", |
41 "system/base_run_loop.h", | 41 "system/base_run_loop.h", |
42 "system/core_impl.cc", | 42 "system/core_impl.cc", |
43 "system/core_impl.h", | 43 "system/core_impl.h", |
| 44 "system/mojo_jni_registrar.cc", |
| 45 "system/mojo_jni_registrar.h", |
44 "system/watcher_impl.cc", | 46 "system/watcher_impl.cc", |
45 "system/watcher_impl.h", | 47 "system/watcher_impl.h", |
46 ] | 48 ] |
47 | 49 |
48 deps = [ | 50 deps = [ |
49 ":system_java_jni_headers", | 51 ":system_java_jni_headers", |
50 "//base", | 52 "//base", |
51 "//mojo/public/c/system", | 53 "//mojo/public/c/system", |
52 "//mojo/public/cpp/system", | 54 "//mojo/public/cpp/system", |
53 ] | 55 ] |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
146 ":system_java", | 148 ":system_java", |
147 "//base:base_java", | 149 "//base:base_java", |
148 "//mojo/public/interfaces/bindings/tests:test_interfaces", | 150 "//mojo/public/interfaces/bindings/tests:test_interfaces", |
149 "//mojo/public/java:bindings_java", | 151 "//mojo/public/java:bindings_java", |
150 "//third_party/android_support_test_runner:runner_java", | 152 "//third_party/android_support_test_runner:runner_java", |
151 ] | 153 ] |
152 shared_libraries = [ ":mojo_java_unittests" ] | 154 shared_libraries = [ ":mojo_java_unittests" ] |
153 apk_name = "MojoTest" | 155 apk_name = "MojoTest" |
154 android_manifest = "javatests/AndroidManifest.xml" | 156 android_manifest = "javatests/AndroidManifest.xml" |
155 } | 157 } |
OLD | NEW |