Remove arm32 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: Ic156f31bc7978c7a3fed937fc9aa2f6aa51caf5e
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/224843
Reviewed-by: Björn Terelius <terelius@google.com>
Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#34411}
This commit is contained in:
Mirko Bonadei
2021-07-02 20:12:02 +02:00
committed by WebRTC LUCI CQ
parent 2a4ed16b61
commit dfcc23b4e7

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', 'arm', 'x64', 'x86']
DEFAULT_ARCHS = ENABLED_ARCHS = ['arm64', 'x64', 'x86']
IOS_DEPLOYMENT_TARGET = '12.0'
LIBVPX_BUILD_VP9 = False