aboutsummaryrefslogtreecommitdiff
path: root/build-android/build.py
diff options
context:
space:
mode:
Diffstat (limited to 'build-android/build.py')
-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]