aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCody Northrop <cnorthrop@google.com>2019-09-19 13:45:55 -0700
committerandroid-build-merger <android-build-merger@google.com>2019-09-19 13:45:55 -0700
commit149e316a458fc8564826e86c009f125caa319f6d (patch)
treeca733a5de79bdd95f2da40186474eab3570fa1a6
parent110cc3eb7271af1576877c7e74398b795067b9e8 (diff)
parent9e380b0fe1ce42a103c4ab559d132ef4c5a12c48 (diff)
downloadvulkan-validation-layers-149e316a458fc8564826e86c009f125caa319f6d.tar.gz
Remove MIPS from vulkan validation layer build am: 691254d741 am: ecc9cdaccf am: a24bb2a6cd
am: 9e380b0fe1 Change-Id: If9ffea73c3fe38026933c146b96a0bbb80c6e1ef
-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]