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 ":sdk", | 9 ":sdk", |
10 "cpp/bindings", | 10 "cpp/bindings", |
11 "cpp/utility", | |
12 "interfaces/bindings/tests:test_interfaces", | 11 "interfaces/bindings/tests:test_interfaces", |
13 ] | 12 ] |
14 | 13 |
15 if (is_android) { | 14 if (is_android) { |
16 deps += [ | 15 deps += [ |
17 "java:bindings", | 16 "java:bindings", |
18 "java:system", | 17 "java:system", |
19 ] | 18 ] |
20 } | 19 } |
21 } | 20 } |
22 | 21 |
23 group("sdk") { | 22 group("sdk") { |
24 deps = [ | 23 deps = [ |
25 "c/system", | 24 "c/system", |
26 "cpp/bindings", | 25 "cpp/bindings", |
27 "cpp/utility", | |
28 "interfaces/bindings", | 26 "interfaces/bindings", |
29 "js", | 27 "js", |
30 ] | 28 ] |
31 } | 29 } |
OLD | NEW |