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

Unified Diff: blimp/docs/running.md

Issue 2345673004: Updating blimp_shell doc (Closed)
Patch Set: missed the 80 line character limit Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/docs/running.md
diff --git a/blimp/docs/running.md b/blimp/docs/running.md
index 65d9fb76efc3dec4627a11f08c10b02103b2da50..76c5ff9e44ae5af6d8d33660b5e28ab71d7b5905 100644
--- a/blimp/docs/running.md
+++ b/blimp/docs/running.md
@@ -152,15 +152,34 @@ 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.
+The Linux client is useful for development purposes where the full Android UI is
+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:
```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:** Create the `/tmp/blimpengine-token` file with any sequence of
+characters. For example:
+
+```
+echo "anything" > /tmp/blimpengine-token
```
## Running the engine
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698