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

Side by Side Diff: Source/build/features.gypi

Issue 1164643005: Oilpan: Add ENABLE_LAZY_SWEEPING and ENABLE_IDLE_GC to features.gypi (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/platform/heap/Heap.h » ('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) 2009 Google Inc. All rights reserved. 2 # Copyright (C) 2009 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 ], 79 ],
80 }], 80 }],
81 ['use_default_render_theme==1', { 81 ['use_default_render_theme==1', {
82 'feature_defines': [ 82 'feature_defines': [
83 'WTF_USE_DEFAULT_RENDER_THEME=1', 83 'WTF_USE_DEFAULT_RENDER_THEME=1',
84 ], 84 ],
85 }], 85 }],
86 ['enable_oilpan==1', { 86 ['enable_oilpan==1', {
87 'feature_defines': [ 87 'feature_defines': [
88 'ENABLE_OILPAN=1', 88 'ENABLE_OILPAN=1',
89 'ENABLE_LAZY_SWEEPING=1',
90 'ENABLE_IDLE_GC=1',
89 'ENABLE_INLINED_TRACE=1', 91 'ENABLE_INLINED_TRACE=1',
90 ], 92 ],
93 }, {
94 'feature_defines': [
peria 2015/06/02 09:03:24 Please do either one of following items. 1. Leave
95 'ENABLE_LAZY_SWEEPING=0',
96 'ENABLE_IDLE_GC=0',
97 ],
91 }], 98 }],
92 ['blink_gc_profiling==1', { 99 ['blink_gc_profiling==1', {
93 'feature_defines': [ 100 'feature_defines': [
94 'ENABLE_GC_PROFILING=1', 101 'ENABLE_GC_PROFILING=1',
95 ], 102 ],
96 }], 103 }],
97 ['blink_logging_always_on==1', { 104 ['blink_logging_always_on==1', {
98 'feature_defines': [ 105 'feature_defines': [
99 'LOG_DISABLED=0', 106 'LOG_DISABLED=0',
100 ], 107 ],
101 }], 108 }],
102 ['link_core_modules_separately==1', { 109 ['link_core_modules_separately==1', {
103 'feature_defines': [ 110 'feature_defines': [
104 'LINK_CORE_MODULES_SEPARATELY', 111 'LINK_CORE_MODULES_SEPARATELY',
105 ], 112 ],
106 }], 113 }],
107 ], 114 ],
108 115
109 # shared build only. If set to 1, link web, core and modules separately. 116 # shared build only. If set to 1, link web, core and modules separately.
110 'link_core_modules_separately%': '<(link_core_modules_separately)', 117 'link_core_modules_separately%': '<(link_core_modules_separately)',
111 }, 118 },
112 } 119 }
OLDNEW
« no previous file with comments | « no previous file | Source/platform/heap/Heap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698