Move ChromeCommandLineInitUtil to base/
- Make ChromeCommandLineInitUtil accessible to other folders than chrome/.
- Pull out the command line file name to be passed as a parameter.
BUG=526219
Review URL: https://codereview.chromium.org/1364143002
Cr-Commit-Position: refs/heads/master@{#352349}
diff --git a/blimp/docs/running.md b/blimp/docs/running.md
new file mode 100644
index 0000000..f42b51a
--- /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
+./build/android/adb_blimp_command_line --enable-webgl
+```
+
+Run the Blimp APK with:
+
+```bash
+adb_run_blimp_client
+```
+
+### Linux Client
+
+TBD