aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCody Northrop <cnorthrop@google.com>2019-09-19 13:26:21 -0700
committerandroid-build-merger <android-build-merger@google.com>2019-09-19 13:26:21 -0700
commitecc9cdaccfda32b9022b7ea4bd97de0196642c72 (patch)
treeca733a5de79bdd95f2da40186474eab3570fa1a6
parent4b29c5338d0696d26623ebde5c232dd9314dd32b (diff)
parent691254d74159549cf5ef8d2a69bb02c062b28a0c (diff)
downloadvulkan-validation-layers-ecc9cdaccfda32b9022b7ea4bd97de0196642c72.tar.gz
Remove MIPS from vulkan validation layer build
am: 691254d741 Change-Id: Ia7b7ab9ab3befe833f24803b9726cc09ecab51d0
-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]