Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(127)

Side by Side Diff: blimp/engine/BUILD.gn

Issue 2028353003: Support for bundling Chromium unittests into a tarball. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updates based on review feedback. Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « blimp/Dockerfile ('k') | blimp/tools/bundle-engine.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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/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
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 }
OLDNEW
« no previous file with comments | « blimp/Dockerfile ('k') | blimp/tools/bundle-engine.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698