2 Blimp only supports building using [GN](../../tools/gn/README.md), and only
3 supports building for Android and Linux. A quick overview over how to use GN can
4 be found in the GN [quick start guide](../../tools/gn/docs/quick_start.md).
7 To setup GN, run the following command:
10 gn args out-android/Debug
13 This will bring up an editor, where you can type in the following:
19 is_component_build = true
20 symbol_level = 1 # Use -g1 instead of -g2
25 For building for Linux, you can have a side-by-side out-directory:
28 gn args out-linux/Debug
31 Use the same arguments as above, but remove `target_os`.
36 is_component_build = true
37 symbol_level = 1 # Use -g1 instead of -g2
43 To build blimp, build the target ```blimp```.
45 ## Building for Android
48 ninja -C out-android/Debug blimp
54 ninja -C out-linux/Debug blimp