Commit c960f497 authored by scf's avatar scf Committed by Commit bot

Updating blimp_shell doc

Updating instructions for the blimp shell

BUG=

Review-Url: https://codereview.chromium.org/2345673004
Cr-Commit-Position: refs/heads/master@{#419201}
parent c3851704
...@@ -152,15 +152,34 @@ Here are a few gotchas: ...@@ -152,15 +152,34 @@ Here are a few gotchas:
## Linux Client ## Linux Client
The Linux client is used for development purpose while the Android client is The Linux client is useful for development purposes where the full Android UI is
shipped. The Linux client is built as part of the `blimp` target. not required.
Build with the following commands:
```
gn gen out-linux/Client
ninja -C out-linux/Client blimp_shell
```
To run it with local logging enabled, execute: To run it with local logging enabled, execute:
```bash ```bash
./out-linux/Debug/blimp_shell \ ./out-linux/Client/blimp_shell \
--user-data-dir=/tmp/blimpclient \ --user-data-dir=/tmp/blimpclient \
--enable-logging=stderr \ --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:** Create the `/tmp/blimpengine-token` file with any sequence of
characters. For example:
```
echo "anything" > /tmp/blimpengine-token
``` ```
## Running the engine ## Running the engine
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment