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

Unified Diff: blimp/engine/BUILD.gn

Issue 2043403004: Create a Dockerfile.base and ensure it is included in build tarballs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Pull in new apt-get and move testing Dockerfile as suggested. 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 side-by-side diff with in-line comments
Download patch
Index: blimp/engine/BUILD.gn
diff --git a/blimp/engine/BUILD.gn b/blimp/engine/BUILD.gn
index 07233833ade43b0b3697569adfa8b86b86263204..95af72f0b3fdc5d5d8ba9a1d1b39437cc15fa2fb 100644
--- a/blimp/engine/BUILD.gn
+++ b/blimp/engine/BUILD.gn
@@ -538,6 +538,7 @@ if (is_linux) {
# These form the arguments to the script.
_rebased_out_dir = rebase_path(root_out_dir)
_rebased_dockerfile = rebase_path("//blimp/engine/Dockerfile")
+ _rebased_dockerfile_base = rebase_path("//blimp/tools/Dockerfile.base")
_rebased_startup_script = rebase_path("//blimp/engine/start_engine.sh")
_bundle = "$root_out_dir/blimp_engine_bundle.tar.gz"
@@ -550,6 +551,7 @@ if (is_linux) {
sources = [
_manifest,
_rebased_dockerfile,
+ _rebased_dockerfile_base,
_rebased_startup_script,
]
outputs = [
@@ -562,6 +564,7 @@ if (is_linux) {
_rebased_out_dir,
"--filelist",
_rebased_dockerfile,
+ _rebased_dockerfile_base,
_rebased_startup_script,
"--manifest",
_rebased_manifest,

Powered by Google App Engine
This is Rietveld 408576698