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 group("public") { | 5 group("public") { |
6 # Meta-target, don't link into production code. | 6 # Meta-target, don't link into production code. |
7 testonly = true | 7 testonly = true |
8 deps = [ | 8 deps = [ |
9 ":libmojo_sdk", | 9 ":libmojo_sdk", |
10 ":sdk", | 10 ":sdk", |
11 "cpp/bindings", | 11 "cpp/bindings", |
12 "cpp/environment:standalone", | 12 "cpp/environment:standalone", |
13 "cpp/utility", | 13 "cpp/utility", |
14 "interfaces/bindings/tests:test_interfaces", | 14 "interfaces/bindings/tests:test_interfaces", |
15 ] | 15 ] |
16 | 16 |
17 if (is_android) { | 17 if (is_android) { |
18 deps += [ | 18 deps += [ |
| 19 "java:bindings", |
19 "java:system", | 20 "java:system", |
20 "java:bindings", | |
21 ] | 21 ] |
22 } | 22 } |
23 } | 23 } |
24 | 24 |
25 group("sdk") { | 25 group("sdk") { |
26 deps = [ | 26 deps = [ |
27 "c/system", | 27 "c/system", |
28 "cpp/bindings", | 28 "cpp/bindings", |
29 "cpp/environment:standalone", | 29 "cpp/environment:standalone", |
30 "cpp/utility", | 30 "cpp/utility", |
31 "interfaces/bindings", | 31 "interfaces/bindings", |
32 "js", | 32 "js", |
33 ] | 33 ] |
34 } | 34 } |
35 | 35 |
36 static_library("libmojo_sdk") { | 36 static_library("libmojo_sdk") { |
37 complete_static_lib = true | 37 complete_static_lib = true |
38 deps = [ | 38 deps = [ |
39 ":sdk", | 39 ":sdk", |
40 ] | 40 ] |
41 } | 41 } |
OLD | NEW |