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

Unified Diff: tools/gyp/configurations_msvs.gypi

Issue 407293002: Disable frame pointers (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 5 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
« no previous file with comments | « tools/gyp/configurations_make.gypi ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/gyp/configurations_msvs.gypi
diff --git a/tools/gyp/configurations_msvs.gypi b/tools/gyp/configurations_msvs.gypi
index 20d69bea9836420c0024c1bdd6b3681e48824e2c..488091378d74e74b05f83ac7fb0dc96ac29d9fad 100644
--- a/tools/gyp/configurations_msvs.gypi
+++ b/tools/gyp/configurations_msvs.gypi
@@ -39,7 +39,9 @@
'DebugInformationFormat': '3',
'ExceptionHandling': '0',
'RuntimeTypeInfo': 'false',
- 'OmitFramePointers': 'false',
+ # Uncomment the following line and pass --profile-vm to enable
+ # profiling of C++ code within Observatory.
+ # 'OmitFramePointers': 'false',
'RuntimeLibrary': '1', # /MTd - Multi-threaded, static (debug)
},
'VCLinkerTool': {
@@ -69,7 +71,9 @@
'FavorSizeOrSpeed': '0',
'ExceptionHandling': '0',
'RuntimeTypeInfo': 'false',
- 'OmitFramePointers': 'false',
+ # Uncomment the following line and pass --profile-vm to enable
+ # profiling of C++ code within Observatory.
+ # 'OmitFramePointers': 'false',
'StringPooling': 'true',
'RuntimeLibrary': '0', # /MT - Multi-threaded, static
},
« no previous file with comments | « tools/gyp/configurations_make.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698