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

Side by Side Diff: base/allocator/allocator.gyp

Issue 8242017: Enable TCMalloc doubly-linked freelist in release builds (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 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 | third_party/tcmalloc/chromium/src/free_list.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 # 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 'variables': { 6 'variables': {
7 'jemalloc_dir': '../../third_party/jemalloc/chromium', 7 'jemalloc_dir': '../../third_party/jemalloc/chromium',
8 'tcmalloc_dir': '../../third_party/tcmalloc/chromium', 8 'tcmalloc_dir': '../../third_party/tcmalloc/chromium',
9 }, 9 },
10 'targets': [ 10 'targets': [
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 'VCLibrarianTool': { 259 'VCLibrarianTool': {
260 'AdditionalOptions': ['/ignore:4006,4221'], 260 'AdditionalOptions': ['/ignore:4006,4221'],
261 'AdditionalLibraryDirectories': 261 'AdditionalLibraryDirectories':
262 ['<(DEPTH)/third_party/platformsdk_win7/files/Lib'], 262 ['<(DEPTH)/third_party/platformsdk_win7/files/Lib'],
263 }, 263 },
264 'VCLinkerTool': { 264 'VCLinkerTool': {
265 'AdditionalOptions': ['/ignore:4006'], 265 'AdditionalOptions': ['/ignore:4006'],
266 }, 266 },
267 }, 267 },
268 'configurations': { 268 'configurations': {
269 'Debug': {
270 'defines':
271 ['TCMALLOC_USE_DOUBLYLINKED_FREELIST'],
272 },
273 'Debug_Base': { 269 'Debug_Base': {
274 'msvs_settings': { 270 'msvs_settings': {
275 'VCCLCompilerTool': { 271 'VCCLCompilerTool': {
276 'RuntimeLibrary': '0', 272 'RuntimeLibrary': '0',
277 }, 273 },
278 }, 274 },
279 }, 275 },
280 }, 276 },
281 'conditions': [ 277 'conditions': [
282 ['OS=="win"', { 278 ['OS=="win"', {
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
436 '$(VCInstallDir)lib', 432 '$(VCInstallDir)lib',
437 '<(SHARED_INTERMEDIATE_DIR)/allocator', 433 '<(SHARED_INTERMEDIATE_DIR)/allocator',
438 ], 434 ],
439 }, 435 },
440 ], 436 ],
441 }, 437 },
442 ], 438 ],
443 }], 439 }],
444 ], 440 ],
445 } 441 }
OLDNEW
« no previous file with comments | « no previous file | third_party/tcmalloc/chromium/src/free_list.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698