| Index: blimp/BUILD.gn
|
| diff --git a/blimp/BUILD.gn b/blimp/BUILD.gn
|
| index 7d056b927ce87075fc1475c00e84bdc2be05e3e2..a13bfb4be0d8f20d9642ce8e5bba110e8f6ba76d 100644
|
| --- a/blimp/BUILD.gn
|
| +++ b/blimp/BUILD.gn
|
| @@ -146,7 +146,8 @@ if (is_linux) {
|
|
|
| # These form the arguments to the script.
|
| _rebased_out_dir = rebase_path(root_out_dir)
|
| - _rebased_dockerfile = rebase_path("//blimp/Dockerfile")
|
| + _rebased_dockerfile = rebase_path("//blimp/engine/testing/Dockerfile")
|
| + _rebased_dockerfile_base = rebase_path("//blimp/tools/Dockerfile.base")
|
| _bundle = "$root_out_dir/blimp_engine_env_tests_bundle.tar.gz"
|
|
|
| # Depending on this ensures that both the manifest is generated
|
| @@ -158,6 +159,7 @@ if (is_linux) {
|
| sources = [
|
| _blimp_engine_env_tests_manifest,
|
| _rebased_dockerfile,
|
| + _rebased_dockerfile_base,
|
| ]
|
| outputs = [
|
| _bundle,
|
| @@ -167,6 +169,7 @@ if (is_linux) {
|
| _rebased_out_dir,
|
| "--filelist",
|
| _rebased_dockerfile,
|
| + _rebased_dockerfile_base,
|
| "--manifest",
|
| _rebased_blimp_engine_env_tests_manifest,
|
| "--output",
|
|
|