OLD | NEW |
1 # | 1 # |
2 # Copyright (C) 2013 Google Inc. All rights reserved. | 2 # Copyright (C) 2013 Google Inc. All rights reserved. |
3 # | 3 # |
4 # Redistribution and use in source and binary forms, with or without | 4 # Redistribution and use in source and binary forms, with or without |
5 # modification, are permitted provided that the following conditions are | 5 # modification, are permitted provided that the following conditions are |
6 # met: | 6 # met: |
7 # | 7 # |
8 # * Redistributions of source code must retain the above copyright | 8 # * Redistributions of source code must retain the above copyright |
9 # notice, this list of conditions and the following disclaimer. | 9 # notice, this list of conditions and the following disclaimer. |
10 # * Redistributions in binary form must reproduce the above | 10 # * Redistributions in binary form must reproduce the above |
(...skipping 14 matching lines...) Expand all Loading... |
25 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
26 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
27 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
28 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29 # | 29 # |
30 { | 30 { |
31 'variables': { | 31 'variables': { |
32 # If set to 1, doesn't compile debug symbols into webcore reducing the | 32 # If set to 1, doesn't compile debug symbols into webcore reducing the |
33 # size of the binary and increasing the speed of gdb. gcc only. | 33 # size of the binary and increasing the speed of gdb. gcc only. |
34 'remove_webcore_debug_symbols%': 0, | 34 'remove_webcore_debug_symbols%': 0, |
35 # Set to 1 to enable the clang plugin that checks the usage of the Blink | |
36 # garbage-collection infrastructure during compilation. | |
37 'enable_oilpan%': 0, | 35 'enable_oilpan%': 0, |
38 'blink_gc_plugin%': 0, | 36 # If set to 1 (default) and using clang, the Blink GC plugin will check the |
| 37 # usage of the garbage-collection infrastructure during compilation. |
| 38 'blink_gc_plugin%': 1, |
| 39 # If set to 1 together with blink_gc_plugin, the Blink GC plugin will dump |
| 40 # points-to graph files for each compilation unit. |
39 'blink_gc_plugin_dump_graph%': 0, | 41 'blink_gc_plugin_dump_graph%': 0, |
40 }, | 42 }, |
41 'targets': [ | 43 'targets': [ |
42 { | 44 { |
43 'target_name': 'config', | 45 'target_name': 'config', |
44 'type': 'none', | 46 'type': 'none', |
45 'direct_dependent_settings': { | 47 'direct_dependent_settings': { |
46 'include_dirs': [ | 48 'include_dirs': [ |
47 '.', | 49 '.', |
48 '..', | 50 '..', |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
126 'xcode_settings': { | 128 'xcode_settings': { |
127 'WARNING_CFLAGS!': ['-Wglobal-constructors'], | 129 'WARNING_CFLAGS!': ['-Wglobal-constructors'], |
128 }, | 130 }, |
129 'variables': { | 131 'variables': { |
130 'chromium_code': 1, | 132 'chromium_code': 1, |
131 }, | 133 }, |
132 }, | 134 }, |
133 } | 135 } |
134 ], | 136 ], |
135 } | 137 } |
OLD | NEW |