aboutsummaryrefslogtreecommitdiffhomepage
path: root/site/user/build.md
diff options
context:
space:
mode:
authorGravatar Mike Klein <mtklein@chromium.org>2017-12-05 08:50:20 -0500
committerGravatar Mike Klein <mtklein@chromium.org>2017-12-05 17:19:45 +0000
commitf32b27d2e4872966a360fb296acccae3e186a4a5 (patch)
treeca13fabaf9203ebb462aacf8dc00539f8d76b2af /site/user/build.md
parent1447177005fcbac83acd501766a46c751a49ae73 (diff)
remove mips support and bots
The NDK has deprecated mips and mips64: https://developer.android.com/ndk/guides/abis.html Might as well clean this up now while I remember. Change-Id: Ie4b2334c75208082067cc16fe355d0349c7e0904 Reviewed-on: https://skia-review.googlesource.com/80560 Reviewed-by: Derek Sollenberger <djsollen@google.com>
Diffstat (limited to 'site/user/build.md')
-rw-r--r--site/user/build.md10
1 files changed, 4 insertions, 6 deletions
diff --git a/site/user/build.md b/site/user/build.md
index a9114c53b7..ce5edbafc3 100644
--- a/site/user/build.md
+++ b/site/user/build.md
@@ -83,12 +83,10 @@ can use one of these commands to fetch the NDK our bots use:
When generating your GN build files, pass the path to your `ndk` and your
desired `target_cpu`:
- bin/gn gen out/arm --args='ndk="/tmp/ndk" target_cpu="arm"'
- bin/gn gen out/arm64 --args='ndk="/tmp/ndk" target_cpu="arm64"'
- bin/gn gen out/mips64el --args='ndk="/tmp/ndk" target_cpu="mips64el"'
- bin/gn gen out/mipsel --args='ndk="/tmp/ndk" target_cpu="mipsel"'
- bin/gn gen out/x64 --args='ndk="/tmp/ndk" target_cpu="x64"'
- bin/gn gen out/x86 --args='ndk="/tmp/ndk" target_cpu="x86"'
+ bin/gn gen out/arm --args='ndk="/tmp/ndk" target_cpu="arm"'
+ bin/gn gen out/arm64 --args='ndk="/tmp/ndk" target_cpu="arm64"'
+ bin/gn gen out/x64 --args='ndk="/tmp/ndk" target_cpu="x64"'
+ bin/gn gen out/x86 --args='ndk="/tmp/ndk" target_cpu="x86"'
Other arguments like `is_debug` and `is_component_build` continue to work.
Tweaking `ndk_api` gives you access to newer Android features like Vulkan.