OLD | NEW |
(Empty) | |
| 1 #!/bin/bash |
| 2 |
| 3 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 4 # Use of this source code is governed by a BSD-style license that can be |
| 5 # found in the LICENSE file. |
| 6 |
| 7 stunnel \ |
| 8 -p /engine/data/stunnel.pem \ |
| 9 -P /engine/stunnel.pid \ |
| 10 -d 25466 -r 25467 -f & |
| 11 /engine/blimp_engine_app \ |
| 12 --disable-gpu \ |
| 13 --use-remote-compositing \ |
| 14 --disable-cached-picture-raster \ |
| 15 --blimp-client-token-path=/engine/data/client_token \ |
| 16 $@ & |
| 17 |
| 18 # Stop execution if either stunnel or blimp_engine_app die. |
| 19 wait -n |
OLD | NEW |