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

Unified Diff: blimp/engine/BUILD.gn

Issue 1638153002: Set up an stunnel endpoint for the engine. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Documentation updates Created 4 years, 11 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 a172ec17cc5f138646ad306048ad864ad2fc70f2..ccb43d2eda1ba3d8fe5cc21b59903ab9de02bb31 100644
--- a/blimp/engine/BUILD.gn
+++ b/blimp/engine/BUILD.gn
@@ -85,6 +85,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_startup_script = rebase_path("//blimp/engine/start_engine.sh")
_rebased_manifest = rebase_path("//blimp/engine/engine-manifest.txt")
_bundle = "$root_out_dir/blimp_engine_bundle.tar"
@@ -95,6 +96,7 @@ if (is_linux) {
sources = [
_rebased_dockerfile,
_rebased_manifest,
+ _rebased_startup_script,
]
outputs = [
_bundle,
@@ -106,6 +108,8 @@ if (is_linux) {
_rebased_out_dir,
"--dockerfile",
_rebased_dockerfile,
+ "--startup-script",
+ _rebased_startup_script,
"--manifest",
_rebased_manifest,
"--output",
« no previous file with comments | « blimp/docs/container.md ('k') | blimp/engine/Dockerfile » ('j') | blimp/engine/Dockerfile » ('J')

Powered by Google App Engine
This is Rietveld 408576698