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

Side by Side Diff: third_party/WebKit/Source/config.gyp

Issue 1517193002: Trial: build trunk with Oilpan everywhere. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: revert previous Created 4 years, 11 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 unified diff | Download patch
« no previous file with comments | « third_party/WebKit/Source/build/features.gypi ('k') | third_party/WebKit/public/features.gni » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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...) Expand all
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...) Expand 10 before | Expand all | Expand 10 after
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 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/build/features.gypi ('k') | third_party/WebKit/public/features.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698