OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |