| 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,
|
|
|