Commit f1dc1186 authored by stuartmorgan's avatar stuartmorgan Committed by Commit bot

Add armv7s to the iOS ARCH list

App Store rules require shipping armv7s with arm64, so this is required
for the "both" configuration.

Also adds it to the 32-bit configuration so that local testing will
better match actual builds, but we can revisit if that turns out to be
onerous in practice.

BUG=407295

Review URL: https://codereview.chromium.org/489713003

Cr-Commit-Position: refs/heads/master@{#291930}
parent 0cac0b67
......@@ -5046,13 +5046,13 @@
# This need to include the "arm" architectures but also the "x86"
# ones (they are used when building for the simulator).
['target_subarch=="arm32"', {
'VALID_ARCHS': ['armv7', 'i386'],
'VALID_ARCHS': ['armv7', 'armv7s', 'i386'],
}],
['target_subarch=="arm64"', {
'VALID_ARCHS': ['arm64', 'x86_64'],
}],
['target_subarch=="both"', {
'VALID_ARCHS': ['arm64', 'armv7', 'x86_64', 'i386'],
'VALID_ARCHS': ['arm64', 'armv7', 'armv7s', 'x86_64', 'i386'],
}],
['use_system_libcxx==1', {
'target_conditions': [
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment