Index: docs/getting_started.md |
diff --git a/docs/getting_started.md b/docs/getting_started.md |
index 9f00d965094793e89ac012286d904e6dec34d43e..d4b7a9b78cc8dde4f3b48cd24f7a70a551338ab9 100644 |
--- a/docs/getting_started.md |
+++ b/docs/getting_started.md |
@@ -184,11 +184,16 @@ Running test with C code: |
#### Building with GN |
- call gn gen out/Release "--args=is_debug=false target_cpu=\"x86\"" |
- call gn gen out/Debug "--args=is_debug=true target_cpu=\"x86\"" |
+ gn gen out/Release "--args=is_debug=false target_cpu=\"x86\"" |
+ gn gen out/Debug "--args=is_debug=true target_cpu=\"x86\"" |
ninja -C out/Release |
ninja -C out/Debug |
+### Building Offical with GN |
+ |
+ gn gen out/Official "--args=is_debug=false is_official_build=true is_chrome_branded=true" |
+ ninja -C out/Official |
+ |
### Linux |
GYP_DEFINES="target_arch=x64" ./gyp_libyuv |