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