aboutsummaryrefslogtreecommitdiff
path: root/build/lib
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2016-01-08 17:14:58 -0800
committerDan Albert <danalbert@google.com>2016-01-11 12:07:46 -0800
commit483c90442966f667c8af243590a2f982a6f7829e (patch)
tree0c4be3b43f1cd33964a4ee2f69a1c9cf6ac5b26b /build/lib
parentc44a1c73dd6bfde4d82c1d90ba5bc7a5738d420c (diff)
downloadndk-483c90442966f667c8af243590a2f982a6f7829e.tar.gz
Run the host tests as the last step of the build.
This way they build servers will let us know if we've screwed up anything significantly. Change-Id: Ie9ddf8aa1f4b9928d91cd567b8d938c7d4305fdf
Diffstat (limited to 'build/lib')
-rw-r--r--build/lib/build_support.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/build/lib/build_support.py b/build/lib/build_support.py
index 02689c92f..1b1022026 100644
--- a/build/lib/build_support.py
+++ b/build/lib/build_support.py
@@ -54,6 +54,18 @@ ALL_ARCHITECTURES = (
)
+ALL_ABIS = (
+ 'armeabi',
+ 'armeabi-v7a',
+ 'armeabi-v7a-hard',
+ 'arm64-v8a',
+ 'mips',
+ 'mips64',
+ 'x86',
+ 'x86_64',
+)
+
+
def arch_to_toolchain(arch):
return dict(zip(ALL_ARCHITECTURES, ALL_TOOLCHAINS))[arch]