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

Unified Diff: Source/build/features.gypi

Issue 1302183010: Oilpan: Add a compile-time flag: DETAILED_MEMORY_INFRA (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 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 | « no previous file | Source/platform/heap/GCInfo.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/build/features.gypi
diff --git a/Source/build/features.gypi b/Source/build/features.gypi
index 92ab0ca6c77656bcc8a25a89e68d403be7b865f3..734a5db10902688f7e47ba5ee7245add0a895c6a 100644
--- a/Source/build/features.gypi
+++ b/Source/build/features.gypi
@@ -49,7 +49,10 @@
'variables': {
# Enables the Oilpan garbage-collection infrastructure.
'enable_oilpan%': 0,
+ # TODO(haraken): Remove blink_gc_profiling. It's replaced with
+ # detailed_memory_infra.
'blink_gc_profiling%': 0,
bashi 2015/09/08 03:52:27 why can't we remove this now?
+ 'detailed_memory_infra%': 0,
'blink_logging_always_on%': 0,
'link_core_modules_separately%': 1,
},
@@ -101,6 +104,11 @@
'ENABLE_GC_PROFILING=1',
],
}],
+ ['detailed_memory_infra==1', {
+ 'feature_defines': [
+ 'ENABLE_DETAILED_MEMORY_INFRA=1',
+ ],
+ }],
['blink_logging_always_on==1', {
'feature_defines': [
'LOG_DISABLED=0',
« no previous file with comments | « no previous file | Source/platform/heap/GCInfo.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698