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

Unified Diff: blimp/docs/build.md

Issue 1365823002: Add basic test suite for Blimp (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@blimp_strings
Patch Set: Forgot to remove blimp_tests from another linux gn bot 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
« no previous file with comments | « blimp/client/android/javatests/src/org/chromium/blimp/DummyTest.java ('k') | blimp/docs/test.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 becda6972df96c94d44fd4793f1824fef36f0f41..1162375f55acb43e35ac1c84af2a07e923c847af 100644
--- a/blimp/docs/build.md
+++ b/blimp/docs/build.md
@@ -6,13 +6,13 @@ be found in the GN [quick start guide](../../tools/gn/docs/quick_start.md).
## Android setup
To setup GN, run the following command:
-```
+```bash
gn args out-android/Debug
```
This will bring up an editor, where you can type in the following:
-```
+```bash
target_os = "android"
is_debug = true
is_clang = true
@@ -24,13 +24,13 @@ use_goma = true
## Linux setup
For building for Linux, you can have a side-by-side out-directory:
-```
+```bash
gn args out-linux/Debug
```
Use the same arguments as above, but remove `target_os`.
-```
+```bash
is_debug = true
is_clang = true
is_component_build = true
@@ -44,12 +44,12 @@ To build blimp, build the target ```blimp```.
## Building for Android
-```
+```bash
ninja -C out-android/Debug blimp
```
## Building for Linux
-```
+```bash
ninja -C out-linux/Debug blimp
```
« no previous file with comments | « blimp/client/android/javatests/src/org/chromium/blimp/DummyTest.java ('k') | blimp/docs/test.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698