aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCody Northrop <cnorthrop@google.com>2019-09-16 11:06:58 -0600
committerCody Northrop <cnorthrop@google.com>2019-09-16 11:06:58 -0600
commit691254d74159549cf5ef8d2a69bb02c062b28a0c (patch)
treeca733a5de79bdd95f2da40186474eab3570fa1a6
parenta502b491453bcc7612bdd0140175aeb9c101d031 (diff)
downloadvulkan-validation-layers-691254d74159549cf5ef8d2a69bb02c062b28a0c.tar.gz
Change-Id: Ida2a4a0079c48d87c405baf44f3bbaec77bd9361
-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]