OLD | NEW |
1 # Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file |
2 # for details. All rights reserved. Use of this source code is governed by a | 2 # for details. All rights reserved. Use of this source code is governed by a |
3 # BSD-style license that can be found in the LICENSE file. | 3 # BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 # This target will be built if no target is specified when invoking ninja. | 5 # This target will be built if no target is specified when invoking ninja. |
6 group("default") { | 6 group("default") { |
7 if (defined(is_fuchsia) && (is_fuchsia || is_fuchsia_host)) { | 7 if (defined(is_fuchsia) && (is_fuchsia || is_fuchsia_host)) { |
8 # Fuchsia has run_vm_tests marked testonly. | 8 # Fuchsia has run_vm_tests marked testonly. |
9 testonly = true | 9 testonly = true |
10 } | 10 } |
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
260 ] | 260 ] |
261 | 261 |
262 script = "//packages/gn/make_bootfs.py" | 262 script = "//packages/gn/make_bootfs.py" |
263 args = [ | 263 args = [ |
264 "--manifest", | 264 "--manifest", |
265 rebase_path(input), | 265 rebase_path(input), |
266 "--output-file", | 266 "--output-file", |
267 rebase_path(output), | 267 rebase_path(output), |
268 "--build-id-map", | 268 "--build-id-map", |
269 rebase_path("$target_gen_dir/build_id_map"), | 269 rebase_path("$target_gen_dir/build_id_map"), |
270 "--compress", | |
271 "--pre-binaries", | 270 "--pre-binaries", |
272 rebase_path(magenta_bootdata), | 271 rebase_path(magenta_bootdata), |
273 ] | 272 ] |
274 } | 273 } |
275 } | 274 } |
276 } | 275 } |
OLD | NEW |