Chromium Code Reviews| 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 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.
| |
| OLD | NEW |