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

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: Added documentation on opening a port with Docker 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..b79aed4ff7e7337b8c929e9166ede4b7009851c2 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"
@@ -106,6 +107,8 @@ if (is_linux) {
_rebased_out_dir,
"--dockerfile",
_rebased_dockerfile,
+ "--startup-script",
+ _rebased_startup_script,
"--manifest",
_rebased_manifest,
"--output",

Powered by Google App Engine
This is Rietveld 408576698