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 17 matching lines...) Loading... |
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 # Enables the Oilpan garbage-collection infrastructure. | 35 # Enables the Oilpan garbage-collection infrastructure. |
36 # If you update the default value below, be sure to update the one in | 36 # If you update the default value below, be sure to update the one in |
37 # build/features.gypi, too! | 37 # build/features.gypi, too! |
38 'enable_oilpan%': 0, | 38 'enable_oilpan%': 1, |
39 # If set to 1 (default) and using clang, the Blink GC plugin will check the | 39 # If set to 1 (default) and using clang, the Blink GC plugin will check the |
40 # usage of the garbage-collection infrastructure during compilation. | 40 # usage of the garbage-collection infrastructure during compilation. |
41 'blink_gc_plugin%': 1, | 41 'blink_gc_plugin%': 1, |
42 # Additional flags for the Blink GC plugin. | 42 # Additional flags for the Blink GC plugin. |
43 'blink_gc_plugin_flags%': '', | 43 'blink_gc_plugin_flags%': '', |
44 # If set to 1, the Blink will use the base allocator instead of | 44 # If set to 1, the Blink will use the base allocator instead of |
45 # PartitionAlloc. so that the top of stack-unwinding becomes the caller | 45 # PartitionAlloc. so that the top of stack-unwinding becomes the caller |
46 # which requests memory allocation in blink. | 46 # which requests memory allocation in blink. |
47 'blink_disable_partition_allocator%': 0, | 47 'blink_disable_partition_allocator%': 0, |
48 }, | 48 }, |
(...skipping 84 matching lines...) Loading... |
133 ], | 133 ], |
134 'direct_dependent_settings': { | 134 'direct_dependent_settings': { |
135 'variables': { | 135 'variables': { |
136 'chromium_code': 1, | 136 'chromium_code': 1, |
137 'clang_warning_flags_unset': [ '-Wglobal-constructors' ], | 137 'clang_warning_flags_unset': [ '-Wglobal-constructors' ], |
138 }, | 138 }, |
139 }, | 139 }, |
140 } | 140 } |
141 ], | 141 ], |
142 } | 142 } |
OLD | NEW |