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

Side by Side Diff: blimp/engine/start_engine.sh

Issue 1776133002: Add Android fonts to blimp engine (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed references to chromeos Created 4 years, 9 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 unified diff | Download patch
« no previous file with comments | « blimp/engine/engine-manifest.txt ('k') | blimp/tools/manifest-blacklist.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 /engine/blimp_engine_app \ 11 LD_LIBRARY_PATH=/engine/ /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 \
16 $@ & 17 $@ &
17 18
18 # Stop execution if either stunnel or blimp_engine_app die. 19 # Stop execution if either stunnel or blimp_engine_app die.
19 wait -n 20 wait -n
OLDNEW
« no previous file with comments | « blimp/engine/engine-manifest.txt ('k') | blimp/tools/manifest-blacklist.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698