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("mojo.gni") | 5 import("mojo.gni") |
6 | 6 |
7 group("public") { | 7 group("public") { |
8 # Meta-target, don't link into production code. | 8 # Meta-target, don't link into production code. |
9 testonly = true | 9 testonly = true |
10 deps = [ | 10 deps = [ |
(...skipping 21 matching lines...) Expand all Loading... |
32 | 32 |
33 group("sdk") { | 33 group("sdk") { |
34 deps = [ | 34 deps = [ |
35 "c/system", | 35 "c/system", |
36 "cpp/application:standalone", | 36 "cpp/application:standalone", |
37 "cpp/bindings", | 37 "cpp/bindings", |
38 "cpp/environment:standalone", | 38 "cpp/environment:standalone", |
39 "cpp/utility", | 39 "cpp/utility", |
40 "interfaces/application", | 40 "interfaces/application", |
41 "interfaces/bindings", | 41 "interfaces/bindings", |
| 42 "interfaces/network", |
42 "js", | 43 "js", |
43 ] | 44 ] |
44 } | 45 } |
45 | 46 |
46 static_library("libmojo_sdk") { | 47 static_library("libmojo_sdk") { |
47 complete_static_lib = true | 48 complete_static_lib = true |
48 deps = [ | 49 deps = [ |
49 ":sdk", | 50 ":sdk", |
50 ] | 51 ] |
51 } | 52 } |
OLD | NEW |