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

Unified Diff: build/common.gypi

Issue 11364072: Changes to build/common.gypi for iOS. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Added comment Created 8 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 | « no previous file | 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 8d3e18c5cefbd279c2035f2f2c637f6f10bf0ee1..a660001558057f0206725b4dd8fa6c38680ae9e1 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -472,10 +472,12 @@
'enable_automation%': 0,
'enable_extensions%': 0,
'enable_printing%': 0,
+ 'enable_session_service%': 0,
'enable_themes%': 0,
'enable_webrtc%': 0,
'notifications%': 0,
'remoting%': 0,
+ 'safe_browsing%': 0,
}],
# Use GPU accelerated cross process image transport by default
@@ -3283,6 +3285,12 @@
'STRIP_INSTALLED_PRODUCT': 'YES',
},
},
+ 'Debug_Base': {
+ 'xcode_settings': {
+ # Remove dSYM to reduce build time.
+ 'DEBUG_INFORMATION_FORMAT': 'dwarf',
+ },
+ },
},
'xcode_settings': {
'conditions': [
@@ -3652,8 +3660,9 @@
],
}],
['OS=="ios"', {
- # Just build armv7 since iOS 4.3+ only supports armv7.
'ARCHS': '$(ARCHS_UNIVERSAL_IPHONE_OS)',
+ # Just build armv7, until armv7s is correctly tested.
+ 'VALID_ARCHS': 'armv7 i386',
'IPHONEOS_DEPLOYMENT_TARGET': '<(ios_deployment_target)',
# Target both iPhone and iPad.
'TARGETED_DEVICE_FAMILY': '1,2',
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698