| 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("//build/module_args/mojo.gni") | 5 import("//build/module_args/mojo.gni") |
| 6 import("mojo.gni") | 6 import("mojo.gni") |
| 7 import("mojo_sdk.gni") | 7 import("mojo_sdk.gni") |
| 8 | 8 |
| 9 # Generate a binary mojo application.The parameters of this template are those | 9 # Generate a binary mojo application.The parameters of this template are those |
| 10 # of a shared library. | 10 # of a shared library. |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 ".", | 74 ".", |
| 75 mojo_root) | 75 mojo_root) |
| 76 if (defined(invoker.deps)) { | 76 if (defined(invoker.deps)) { |
| 77 deps += invoker.deps | 77 deps += invoker.deps |
| 78 } | 78 } |
| 79 if (defined(invoker.configs)) { | 79 if (defined(invoker.configs)) { |
| 80 configs += invoker.configs | 80 configs += invoker.configs |
| 81 } | 81 } |
| 82 forward_variables_from(invoker, | 82 forward_variables_from(invoker, |
| 83 [ | 83 [ |
| 84 "forward_dependent_configs_from", | |
| 85 "public_deps", | 84 "public_deps", |
| 86 "all_dependent_configs", | 85 "all_dependent_configs", |
| 87 "public_configs", | 86 "public_configs", |
| 88 "check_includes", | 87 "check_includes", |
| 89 "data", | 88 "data", |
| 90 "inputs", | 89 "inputs", |
| 91 "public", | 90 "public", |
| 92 "sources", | 91 "sources", |
| 93 "testonly", | 92 "testonly", |
| 94 ]) | 93 ]) |
| (...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 427 deps = [ | 426 deps = [ |
| 428 ":${copy_symbols_target}", | 427 ":${copy_symbols_target}", |
| 429 ] | 428 ] |
| 430 | 429 |
| 431 public_deps = [ | 430 public_deps = [ |
| 432 ":${zip_action_name}", | 431 ":${zip_action_name}", |
| 433 ] | 432 ] |
| 434 } | 433 } |
| 435 } | 434 } |
| 436 } | 435 } |
| OLD | NEW |