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

Unified Diff: tools/gyp/configurations_xcode.gypi

Issue 1663863002: Add product mode: (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 11 months 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
Index: tools/gyp/configurations_xcode.gypi
diff --git a/tools/gyp/configurations_xcode.gypi b/tools/gyp/configurations_xcode.gypi
index e3d04b68660de181423b849f662c2f24e1fe6502..6931c64504a0196c6a1aad351f3a71d6981936bc 100644
--- a/tools/gyp/configurations_xcode.gypi
+++ b/tools/gyp/configurations_xcode.gypi
@@ -55,19 +55,6 @@
'GCC_ENABLE_TRIGRAPHS': 'NO',
'COMBINE_HIDPI_IMAGES': 'YES',
},
- 'conditions': [
- ['c_frame_pointers==1', {
- 'xcode_settings': {
- 'OTHER_CFLAGS': [
- '-fno-omit-frame-pointer',
- '-mno-omit-leaf-frame-pointer',
- ],
- },
- 'defines': [
- 'NATIVE_CODE_HAS_FRAME_POINTERS',
- ],
- }],
- ],
},
'Dart_Macos_ia32_Base': {
'abstract': 1,
@@ -92,9 +79,30 @@
},
'Dart_Macos_Debug': {
'abstract': 1,
+ 'xcode_settings': {
+ 'OTHER_CFLAGS': [
+ '-fno-omit-frame-pointer',
+ '-mno-omit-leaf-frame-pointer',
+ ],
+ },
},
'Dart_Macos_Release': {
'abstract': 1,
+ 'xcode_settings': {
+ 'OTHER_CFLAGS': [
+ '-fno-omit-frame-pointer',
+ '-mno-omit-leaf-frame-pointer',
+ ],
+ },
+ },
+ 'Dart_Macos_Product': {
+ 'abstract': 1,
+ 'xcode_settings': {
+ 'OTHER_CFLAGS': [
+ '-fomit-frame-pointer',
+ '-momit-leaf-frame-pointer',
+ ],
+ },
},
},
},

Powered by Google App Engine
This is Rietveld 408576698