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

Unified Diff: blimp/docs/running.md

Issue 1364143002: Move ChromeCommandLineInitUtil to base/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@blimp_test
Patch Set: Addressed comments, added adb scripts, fixed library loader bug. Created 5 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
Index: blimp/docs/running.md
diff --git a/blimp/docs/running.md b/blimp/docs/running.md
new file mode 100644
index 0000000000000000000000000000000000000000..7dc80c1af9e284938d4c2ee50d02a9f5630eb1ef
--- /dev/null
+++ b/blimp/docs/running.md
@@ -0,0 +1,32 @@
+# Running Blimp
+
+See [build](build.md) for instructions on how to build Blimp.
+
+## Running the client
+
+There are both Android and Linux clients. The Android client is the shipping
+client while the Linux client is used for development purposes.
+
+### Android Client
+
+Install the Blimp APK with the following:
+
+```bash
+./build/android/adb_install_apk.py $(PRODUCT_DIR)/apks/Blimp.apk
+```
+
+Set up any command line flags with:
+
+```bash
+adb_blimp_command_line --enable-webgl
nyquist 2015/09/28 17:37:27 Should this be ./build/android/adb_climp_command_l
David Trainor- moved to gerrit 2015/09/28 23:29:58 Huh it auto-completes for me. Will add though jus
+```
+
+Run the Blimp APK with:
+
+```bash
+adb_run_blimp_client
+```
+
+### Linux Client
+
+TBD

Powered by Google App Engine
This is Rietveld 408576698