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 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
245 '<(tcmalloc_dir)/src/windows/mini_disassembler_types.h', | 245 '<(tcmalloc_dir)/src/windows/mini_disassembler_types.h', |
246 '<(tcmalloc_dir)/src/windows/override_functions.cc', | 246 '<(tcmalloc_dir)/src/windows/override_functions.cc', |
247 '<(tcmalloc_dir)/src/windows/patch_functions.cc', | 247 '<(tcmalloc_dir)/src/windows/patch_functions.cc', |
248 '<(tcmalloc_dir)/src/windows/preamble_patcher.cc', | 248 '<(tcmalloc_dir)/src/windows/preamble_patcher.cc', |
249 '<(tcmalloc_dir)/src/windows/preamble_patcher.h', | 249 '<(tcmalloc_dir)/src/windows/preamble_patcher.h', |
250 '<(tcmalloc_dir)/src/windows/preamble_patcher_with_stub.cc', | 250 '<(tcmalloc_dir)/src/windows/preamble_patcher_with_stub.cc', |
251 ], | 251 ], |
252 'msvs_settings': { | 252 'msvs_settings': { |
253 # TODO(sgk): merge this with build/common.gypi settings | 253 # TODO(sgk): merge this with build/common.gypi settings |
254 'VCLibrarianTool=': { | 254 'VCLibrarianTool=': { |
255 'AdditionalOptions': '/ignore:4006,4221', | 255 'AdditionalOptions': ['/ignore:4006,4221'], |
256 'AdditionalLibraryDirectories': | 256 'AdditionalLibraryDirectories': |
257 ['<(DEPTH)/third_party/platformsdk_win2008_6_1/files/Lib'], | 257 ['<(DEPTH)/third_party/platformsdk_win2008_6_1/files/Lib'], |
258 }, | 258 }, |
259 'VCLinkerTool': { | 259 'VCLinkerTool': { |
260 'AdditionalOptions': '/ignore:4006', | 260 'AdditionalOptions': ['/ignore:4006'], |
261 }, | 261 }, |
262 }, | 262 }, |
263 'configurations': { | 263 'configurations': { |
264 'Debug_Base': { | 264 'Debug_Base': { |
265 'msvs_settings': { | 265 'msvs_settings': { |
266 'VCCLCompilerTool': { | 266 'VCCLCompilerTool': { |
267 'RuntimeLibrary': '0', | 267 'RuntimeLibrary': '0', |
268 }, | 268 }, |
269 }, | 269 }, |
270 }, | 270 }, |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
401 ], | 401 ], |
402 }], | 402 }], |
403 ], | 403 ], |
404 } | 404 } |
405 | 405 |
406 # Local Variables: | 406 # Local Variables: |
407 # tab-width:2 | 407 # tab-width:2 |
408 # indent-tabs-mode:nil | 408 # indent-tabs-mode:nil |
409 # End: | 409 # End: |
410 # vim: set expandtab tabstop=2 shiftwidth=2: | 410 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |