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