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

Unified Diff: tools/gyp/configurations_make.gypi

Issue 78713003: Attempt at enabling profiler (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
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 | « tools/gyp/configurations_android.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_make.gypi
diff --git a/tools/gyp/configurations_make.gypi b/tools/gyp/configurations_make.gypi
index c58a63a32adfc7f703ff1af68bf6e0061c9238d1..73d7350fafcebd4f10c6844c8b362c4f43cde10d 100644
--- a/tools/gyp/configurations_make.gypi
+++ b/tools/gyp/configurations_make.gypi
@@ -91,12 +91,17 @@
'Dart_Debug': {
'cflags': [
'-O<(dart_debug_optimization_level)',
+ # The sampling profiler uses the frame pointer to walk the stack.
'-fno-omit-frame-pointer',
],
},
'Dart_Release': {
- 'cflags': [ '-O3', ],
+ 'cflags': [
+ '-O3',
+ # The sampling profiler uses the frame pointer to walk the stack.
+ '-fno-omit-frame-pointer',
srdjan 2013/12/03 22:18:09 Adding this used to hurt performance. Have you che
+ ],
},
},
},
« no previous file with comments | « tools/gyp/configurations_android.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698