Chromium Code Reviews| Index: blimp/engine/start_engine.sh |
| diff --git a/blimp/engine/start_engine.sh b/blimp/engine/start_engine.sh |
| new file mode 100755 |
| index 0000000000000000000000000000000000000000..a9ecf2c00fe02e15b355c94aeb84bab666859a0f |
| --- /dev/null |
| +++ b/blimp/engine/start_engine.sh |
| @@ -0,0 +1,17 @@ |
| +#!/bin/bash |
| + |
| +# Copyright 2016 The Chromium Authors. All rights reserved. |
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| +stunnel \ |
| + -p /engine/data/stunnel.pem \ |
| + -P /engine/stunnel.pid \ |
| + -d 25466 -r 25467 -f & |
| +/engine/blimp_engine_app \ |
| + --disable-gpu \ |
| + --use-remote-compositing \ |
| + --disable-cached-picture-raster \ |
| + --blimp-client-token-path=/engine/data/client_token \ |
| + $@ & |
| +wait -n |
|
maniscalco
2016/01/28 21:17:24
I think it's worth adding a comment explaining why
marcinjb
2016/01/28 21:41:10
Done.
|