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", |
11 ":mojo_javatests", | 11 ":mojo_javatests", |
12 ] | 12 ] |
13 } | 13 } |
14 | 14 |
15 generate_jni("system_java_jni_headers") { | 15 generate_jni("system_java_jni_headers") { |
16 sources = [ | 16 sources = [ |
17 "system/src/org/chromium/mojo/system/impl/CoreImpl.java", | 17 "system/src/org/chromium/mojo/system/impl/CoreImpl.java", |
18 ] | 18 ] |
19 | 19 |
20 jni_package = "mojo" | 20 jni_package = "mojo" |
21 } | 21 } |
22 | 22 |
23 shared_library("libsystem_java") { | 23 source_set("libsystem_java") { |
24 sources = [ | 24 sources = [ |
25 "system/core_impl.cc", | 25 "system/core_impl.cc", |
26 "system/core_impl.h", | 26 "system/core_impl.h", |
27 ] | 27 ] |
28 | 28 |
29 deps = [ | 29 deps = [ |
30 ":system_java_jni_headers", | 30 ":system_java_jni_headers", |
31 "//mojo/edk/system", | 31 "//mojo/edk/system", |
32 "//mojo/environment:chromium", | 32 "//mojo/environment:chromium", |
33 ] | 33 ] |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 | 76 |
77 deps = [ | 77 deps = [ |
78 ":system_java", | 78 ":system_java", |
79 "//base:base_java", | 79 "//base:base_java", |
80 "//base:base_java_test_support", | 80 "//base:base_java_test_support", |
81 "//mojo/public/interfaces/bindings/tests:test_interfaces_java", | 81 "//mojo/public/interfaces/bindings/tests:test_interfaces_java", |
82 "//mojo/public/java:bindings", | 82 "//mojo/public/java:bindings", |
83 "//mojo/public/java:system", | 83 "//mojo/public/java:system", |
84 ] | 84 ] |
85 } | 85 } |
OLD | NEW |