Remove x86 from build_ios_libs.

iOS 12.0 is the new iOS deployment target and iOS 10 is the maximum
deployment target for 32-bit targets.

Bug: webrtc:12928
Change-Id: I60f300c991cc67f826b2bff56415ed8e20cee77f
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/224845
Reviewed-by: Artem Titov <titovartem@webrtc.org>
Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#34415}
This commit is contained in:
Mirko Bonadei
2021-07-05 09:50:16 +02:00
committed by WebRTC LUCI CQ
parent f94f56516a
commit bac0f9fcf5

View File

@ -30,7 +30,7 @@ import find_depot_tools
SDK_OUTPUT_DIR = os.path.join(SRC_DIR, 'out_ios_libs')
SDK_FRAMEWORK_NAME = 'WebRTC.framework'
DEFAULT_ARCHS = ENABLED_ARCHS = ['arm64', 'x64', 'x86']
DEFAULT_ARCHS = ENABLED_ARCHS = ['arm64', 'x64']
IOS_DEPLOYMENT_TARGET = '12.0'
LIBVPX_BUILD_VP9 = False