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

Unified Diff: Source/config.gyp

Issue 262533008: Default enable the Blink GC plugin. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 8 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/config.gyp
diff --git a/Source/config.gyp b/Source/config.gyp
index dd51af1fbe550e0c7b6aac52a79f942938bc4cde..08fdfd1f732bc6044da4364f9304e08ba4a2b7ea 100644
--- a/Source/config.gyp
+++ b/Source/config.gyp
@@ -32,10 +32,12 @@
# If set to 1, doesn't compile debug symbols into webcore reducing the
# size of the binary and increasing the speed of gdb. gcc only.
'remove_webcore_debug_symbols%': 0,
- # Set to 1 to enable the clang plugin that checks the usage of the Blink
- # garbage-collection infrastructure during compilation.
'enable_oilpan%': 0,
- 'blink_gc_plugin%': 0,
+ # If set to 1 (default) and using clang, the Blink GC plugin will check the
+ # usage of the garbage-collection infrastructure during compilation.
+ 'blink_gc_plugin%': 1,
+ # If set to 1 together with blink_gc_plugin, the Blink GC plugin will dump
+ # points-to graph files for each compilation unit.
'blink_gc_plugin_dump_graph%': 0,
},
'targets': [
« 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