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

Unified Diff: blimp/docs/build.md

Issue 2323993003: Update blimp documentation to refer to Chrome (Closed)
Patch Set: rebased 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 | blimp/docs/markdown.md » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/docs/build.md
diff --git a/blimp/docs/build.md b/blimp/docs/build.md
index b984f0a88d442ef0825f80287f7a019ec4a26fd4..f6cce10d3994d151fbc26724ccdfa64b2cdc4310 100644
--- a/blimp/docs/build.md
+++ b/blimp/docs/build.md
@@ -41,22 +41,22 @@ gn gen out-android/Debug
To build:
```bash
-ninja -C out-android/Debug blimp
+ninja -C out-android/Debug blimp chrome_public_apk_incremental
```
This will also generate an incremental APK, which you can install with this
command:
```bash
-out-android/Debug/bin/install_blimp_apk_incremental
+out-android/Debug/bin/install_chrome_public_apk_incremental
```
During development, it might be beneficial to put these two commands together
like this:
```bash
-ninja -C out-android/Debug blimp && \
- out-android/Debug/bin/install_blimp_apk_incremental
+ninja -C out-android/Debug blimp chrome_public_apk_incremental && \
+ out-android/Debug/bin/install_chrome_public_apk_incremental
```
To add your own build preferences:
« no previous file with comments | « no previous file | blimp/docs/markdown.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698