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 |
``` |