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

Side by Side Diff: blimp/docs/running.md

Issue 2239923002: Make blimp work on K (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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
OLDNEW
1 # Running Blimp 1 # Running Blimp
2 [TOC] 2 [TOC]
3 3
4 See [build](build.md) for instructions on how to build Blimp. 4 See [build](build.md) for instructions on how to build Blimp.
5 5
6 ## Android Client 6 ## Android Client
7 7
8 ### Installing the client 8 ### Installing the client
9 9
10 Install the Blimp APK with the following: 10 Install the Blimp APK with the following:
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 ### On a workstation 156 ### On a workstation
157 The following flags are required to start an Engine instance: 157 The following flags are required to start an Engine instance:
158 158
159 * `--blimp-client-token-path=$PATH`: Path to a file containing a nonempty 159 * `--blimp-client-token-path=$PATH`: Path to a file containing a nonempty
160 token string. If this is not present, the engine will fail to boot. 160 token string. If this is not present, the engine will fail to boot.
161 * `--use-remote-compositing`: Ensures that the renderer uses the remote 161 * `--use-remote-compositing`: Ensures that the renderer uses the remote
162 compositor. 162 compositor.
163 * `--disable-cached-picture-raster`: Ensures that rasterized content is not 163 * `--disable-cached-picture-raster`: Ensures that rasterized content is not
164 destroyed before serialization. 164 destroyed before serialization.
165 * `--android-fonts-path=$PATH`: Path to where the fonts are located. 165 * `--android-fonts-path=$PATH`: Path to where the fonts are located.
166 Typically this would be `out-linux/Debug/gen/third_party/blimp_fonts`. 166 If the android client is kitkat system, this would be
nyquist 2016/08/12 03:44:12 Android* and KitKat*
Menglin 2016/08/12 19:25:09 Done.
167 `out-linux/Debug/gen/third_party/blimp_fonts/font_bundle/kitkat/`.
168 If the android client is marshmallow system, this would be
nyquist 2016/08/12 03:44:12 Android* and Marshmallow*
Menglin 2016/08/12 19:25:09 Done.
169 `out-linux/Debug/gen/third_party/blimp_fonts/font_bundle/marshmallow/`.
167 * `--disable-remote-fonts`: Disables downloading of custom web fonts in the 170 * `--disable-remote-fonts`: Disables downloading of custom web fonts in the
168 renderer. 171 renderer.
169 172
170 #### Typical invocation 173 #### Typical invocation
171 174
172 One can start the engine using these flags: 175 One can start the engine using these flags:
173 176
174 ```bash 177 ```bash
175 out-linux/Debug/blimp_engine_app \ 178 out-linux/Debug/blimp_engine_app \
176 --android-fonts-path=out-linux/Debug/gen/third_party/blimp_fonts \ 179 --android-fonts-path=out-linux/Debug/gen/third_party/blimp_fonts/font_bundle/m arshmallow/ \
177 --blimp-client-token-path=/tmp/blimpengine-token \ 180 --blimp-client-token-path=/tmp/blimpengine-token \
178 --enable-logging=stderr \ 181 --enable-logging=stderr \
179 --vmodule="blimp*=1" 182 --vmodule="blimp*=1"
180 ``` 183 ```
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698