| OLD | NEW |
| (Empty) |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 import("mojo.gni") | |
| 6 | |
| 7 group("public") { | |
| 8 # Meta-target, don't link into production code. | |
| 9 testonly = true | |
| 10 deps = [ | |
| 11 ":libmojo_sdk", | |
| 12 ":sdk", | |
| 13 "cpp/application:standalone", | |
| 14 "cpp/bindings", | |
| 15 "cpp/environment:standalone", | |
| 16 "cpp/utility", | |
| 17 "interfaces/bindings/tests:test_interfaces", | |
| 18 "sky", | |
| 19 ] | |
| 20 | |
| 21 if (is_linux) { | |
| 22 deps += [ "python" ] | |
| 23 } | |
| 24 | |
| 25 if (is_android) { | |
| 26 deps += [ | |
| 27 "java:system", | |
| 28 "java:bindings", | |
| 29 ] | |
| 30 } | |
| 31 } | |
| 32 | |
| 33 group("sdk") { | |
| 34 deps = [ | |
| 35 "c/system", | |
| 36 "cpp/application:standalone", | |
| 37 "cpp/bindings", | |
| 38 "cpp/environment:standalone", | |
| 39 "cpp/utility", | |
| 40 "interfaces/application", | |
| 41 "js", | |
| 42 ] | |
| 43 } | |
| 44 | |
| 45 static_library("libmojo_sdk") { | |
| 46 complete_static_lib = true | |
| 47 deps = [ | |
| 48 ":sdk", | |
| 49 ] | |
| 50 } | |
| OLD | NEW |