Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/sanitizers/sanitizers.gni") | 7 import("//build/config/sanitizers/sanitizers.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//mojo/public/tools/bindings/mojom.gni") | 9 import("//mojo/public/tools/bindings/mojom.gni") |
| 10 import("//tools/grit/repack.gni") | 10 import("//tools/grit/repack.gni") |
| (...skipping 513 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 524 # complete (though not necessarily before we generate the manifest | 524 # complete (though not necessarily before we generate the manifest |
| 525 # itself). | 525 # itself). |
| 526 deps = [ | 526 deps = [ |
| 527 ":engine", | 527 ":engine", |
| 528 ] | 528 ] |
| 529 } | 529 } |
| 530 | 530 |
| 531 # Builds and bundles the engine into a tarball that can be used to build a | 531 # Builds and bundles the engine into a tarball that can be used to build a |
| 532 # Docker image. | 532 # Docker image. |
| 533 action("blimp_engine_bundle") { | 533 action("blimp_engine_bundle") { |
| 534 script = "//blimp/tools/bundle-engine.py" | 534 script = "//blimp/tools/bundle.py" |
|
Wez
2016/06/06 23:52:15
nit: This name makes it less obvious whether "bund
Jess
2016/06/07 00:28:37
Updated to use create-bundle.py
| |
| 535 | 535 |
| 536 # These form the arguments to the script. | 536 # These form the arguments to the script. |
| 537 _rebased_out_dir = rebase_path(root_out_dir) | 537 _rebased_out_dir = rebase_path(root_out_dir) |
| 538 _rebased_dockerfile = rebase_path("//blimp/engine/Dockerfile") | 538 _rebased_dockerfile = rebase_path("//blimp/engine/Dockerfile") |
| 539 _rebased_startup_script = rebase_path("//blimp/engine/start_engine.sh") | 539 _rebased_startup_script = rebase_path("//blimp/engine/start_engine.sh") |
| 540 _bundle = "$root_out_dir/blimp_engine_bundle.tar.gz" | 540 _bundle = "$root_out_dir/blimp_engine_bundle.tar.gz" |
| 541 | 541 |
| 542 # Depending on this ensures that both the manifest is generated | 542 # Depending on this ensures that both the manifest is generated |
| 543 # and everything in the manifest has been built. | 543 # and everything in the manifest has been built. |
| 544 deps = [ | 544 deps = [ |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 601 # Include symupload target here as it is needed by the buildbots to upload | 601 # Include symupload target here as it is needed by the buildbots to upload |
| 602 # the symbol file created by dump_syms. | 602 # the symbol file created by dump_syms. |
| 603 deps = [ | 603 deps = [ |
| 604 ":blimp_engine_app", | 604 ":blimp_engine_app", |
| 605 "//breakpad:symupload", | 605 "//breakpad:symupload", |
| 606 dump_syms_label, | 606 dump_syms_label, |
| 607 ] | 607 ] |
| 608 } | 608 } |
| 609 } | 609 } |
| 610 } | 610 } |
| OLD | NEW |