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

Side by Side Diff: chrome/chrome_renderer.gypi

Issue 854005: Enable TCMalloc on Linux by default. (Closed)
Patch Set: Condition on linux_use_tcmalloc=1 Created 10 years, 9 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 | « build/common.gypi ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'renderer', 8 'target_name': 'renderer',
9 'type': '<(library)', 9 'type': '<(library)',
10 'msvs_guid': '9301A569-5D2B-4D11-9332-B1E30AEACB8D', 10 'msvs_guid': '9301A569-5D2B-4D11-9332-B1E30AEACB8D',
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 ], 177 ],
178 }, 178 },
179 'conditions': [ 179 'conditions': [
180 ['disable_nacl!=1', { 180 ['disable_nacl!=1', {
181 'dependencies': [ 181 'dependencies': [
182 'nacl', 182 'nacl',
183 ], 183 ],
184 }], 184 }],
185 # Linux-specific rules. 185 # Linux-specific rules.
186 ['OS=="linux"', { 186 ['OS=="linux"', {
187 'conditions': [
188 [ 'linux_use_tcmalloc==1', {
189 'dependencies': [
190 '../base/allocator/allocator.gyp:allocator',
191 ],
192 },
193 ],
194 ],
187 'dependencies': [ 195 'dependencies': [
188 '../build/linux/system.gyp:gtk', 196 '../build/linux/system.gyp:gtk',
189 '../sandbox/sandbox.gyp:sandbox', 197 '../sandbox/sandbox.gyp:sandbox',
190 ], 198 ],
191 }], 199 }],
192 # BSD-specific rules. 200 # BSD-specific rules.
193 ['OS=="openbsd" or OS=="freebsd"', { 201 ['OS=="openbsd" or OS=="freebsd"', {
194 'dependencies': [ 202 'dependencies': [
195 '../build/linux/system.gyp:gtk', 203 '../build/linux/system.gyp:gtk',
196 ], 204 ],
(...skipping 26 matching lines...) Expand all
223 ], 231 ],
224 }, 232 },
225 ], 233 ],
226 } 234 }
227 235
228 # Local Variables: 236 # Local Variables:
229 # tab-width:2 237 # tab-width:2
230 # indent-tabs-mode:nil 238 # indent-tabs-mode:nil
231 # End: 239 # End:
232 # vim: set expandtab tabstop=2 shiftwidth=2: 240 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698