Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(859)

Unified Diff: build/common.gypi

Issue 58373003: Fix iOS device builds broken by commit d645540 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/memory/discardable_memory_provider_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/common.gypi
diff --git a/build/common.gypi b/build/common.gypi
index a33064df2982f6d4953aadb3e25592a1e5231cc3..7e498acb9399d019fb039bf5c4a21076404e217c 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -4664,7 +4664,10 @@
'x86_64'
],
}],
- ['target_arch=="ia32"', {
+ # Mac builds set ARCHS explicitly to i386. Leave ARCHS unspecified for
+ # iOS builds, so that Xcode will use the appropriate defaults for
+ # simulator and device builds, which are different architectures.
+ ['target_arch=="ia32" and OS!="ios"', {
'ARCHS': [
'i386'
],
« no previous file with comments | « base/memory/discardable_memory_provider_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698