Chromium Code Reviews| Index: blimp/docs/running.md |
| diff --git a/blimp/docs/running.md b/blimp/docs/running.md |
| index 65d9fb76efc3dec4627a11f08c10b02103b2da50..94be9a3771d09ff8233802748388f30a3b0cc07d 100644 |
| --- a/blimp/docs/running.md |
| +++ b/blimp/docs/running.md |
| @@ -153,16 +153,33 @@ Here are a few gotchas: |
| ## Linux Client |
| The Linux client is used for development purpose while the Android client is |
| -shipped. The Linux client is built as part of the `blimp` target. |
| +shipped. The Linux client is not built as part of the `blimp` target. It requires x11 which is not defined in the engine. |
|
Wez
2016/09/16 00:12:38
nit: Let's rephrase this to just "The Linux client
scf
2016/09/16 00:15:00
Acknowledged.
|
| + |
| +Build with the following commands: |
| +``` |
| +mkdir -p out-linux/Client |
| +echo "" > out-linux/Client/args.gn |
|
Wez
2016/09/16 00:12:38
Do you need this? Shouldn't "gn gen out-linux/Cli
scf
2016/09/16 00:15:00
Acknowledged.
|
| + |
| +gn gen out-linux/Client |
| +ninja -C out-linux/Client blimp_shell |
| +``` |
| + |
| + |
| To run it with local logging enabled, execute: |
| ```bash |
| -./out-linux/Debug/blimp_shell \ |
| +./out-linux/Client/blimp_shell \ |
| --user-data-dir=/tmp/blimpclient \ |
| --enable-logging=stderr \ |
| - --vmodule="*=1" |
| + --vmodule="*=1" \ |
| + --engine-ip=127.0.0.1 \ |
| + --engine-port=25467 \ |
| + --engine-transport=tcp \ |
| + --blimp-client-token-path=/tmp/blimpengine-token |
| ``` |
| +**PS:** The `/tmp/blimpengine-token` is a file any sequence of characters. Just make sure when you start the engine, you use the same file. |
|
Wez
2016/09/16 00:12:38
Let's be explicit on the requirements here; is an
scf
2016/09/16 00:15:00
Acknowledged.
|
| + |
| ## Running the engine |
| ### In a container |