| 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 25 matching lines...) Expand all Loading... |
| 36 } | 36 } |
| 37 } | 37 } |
| 38 | 38 |
| 39 group("sdk") { | 39 group("sdk") { |
| 40 deps = [ | 40 deps = [ |
| 41 "c/system", | 41 "c/system", |
| 42 "cpp/bindings", | 42 "cpp/bindings", |
| 43 "cpp/environment:standalone", | 43 "cpp/environment:standalone", |
| 44 "cpp/utility", | 44 "cpp/utility", |
| 45 "interfaces/bindings", | 45 "interfaces/bindings", |
| 46 "interfaces/network", |
| 46 "js", | 47 "js", |
| 47 ] | 48 ] |
| 48 | 49 |
| 49 if (mojo_use_application_in_sdk) { | 50 if (mojo_use_application_in_sdk) { |
| 50 deps += [ | 51 deps += [ |
| 51 "cpp/application:standalone", | 52 "cpp/application:standalone", |
| 52 "interfaces/application", | 53 "interfaces/application", |
| 53 ] | 54 ] |
| 54 } | 55 } |
| 55 } | 56 } |
| 56 | 57 |
| 57 static_library("libmojo_sdk") { | 58 static_library("libmojo_sdk") { |
| 58 complete_static_lib = true | 59 complete_static_lib = true |
| 59 deps = [ | 60 deps = [ |
| 60 ":sdk", | 61 ":sdk", |
| 61 ] | 62 ] |
| 62 } | 63 } |
| OLD | NEW |