aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCody Northrop <cnorthrop@google.com>2019-09-19 13:32:57 -0700
committerandroid-build-merger <android-build-merger@google.com>2019-09-19 13:32:57 -0700
commita24bb2a6cd55eba349b1812adad66ab2957a5e9e (patch)
treeca733a5de79bdd95f2da40186474eab3570fa1a6
parent77777cdce6900761def3bdd43175543d0aac1525 (diff)
parentecc9cdaccfda32b9022b7ea4bd97de0196642c72 (diff)
downloadvulkan-validation-layers-a24bb2a6cd55eba349b1812adad66ab2957a5e9e.tar.gz
Remove MIPS from vulkan validation layer build am: 691254d741
am: ecc9cdaccf Change-Id: Ia9e72a0aadb2c11e93f5ebf7e14e3512421ba46b
-rwxr-xr-xbuild-android/build.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/build-android/build.py b/build-android/build.py
index 77faea141..7b4d3d32a 100755
--- a/build-android/build.py
+++ b/build-android/build.py
@@ -65,8 +65,6 @@ THIS_DIR = os.path.realpath(os.path.dirname(__file__))
ALL_ARCHITECTURES = (
'arm',
'arm64',
- 'mips',
- 'mips64',
'x86',
'x86_64',
)
@@ -76,8 +74,6 @@ ALL_ARCHITECTURES = (
ALL_ABIS = (
'armeabi-v7a',
'arm64-v8a',
- 'mips',
- 'mips64',
'x86',
'x86_64',
)
@@ -89,8 +85,6 @@ def arch_to_abis(arch):
return {
'arm': ['armeabi-v7a'],
'arm64': ['arm64-v8a'],
- 'mips': ['mips'],
- 'mips64': ['mips64'],
'x86': ['x86'],
'x86_64': ['x86_64'],
}[arch]