| 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'tcmalloc', | 8 'target_name': 'tcmalloc', |
| 9 'type': '<(library)', | 9 'type': '<(library)', |
| 10 'msvs_guid': 'C564F145-9172-42C3-BFCB-60FDEA124321', | 10 'msvs_guid': 'C564F145-9172-42C3-BFCB-60FDEA124321', |
| 11 'include_dirs': [ | 11 'include_dirs': [ |
| 12 '.', | 12 '.', |
| 13 'tcmalloc/src/base', | 13 'tcmalloc/src/base', |
| 14 'tcmalloc/src', | 14 'tcmalloc/src', |
| 15 '../..', | 15 '../..', |
| 16 ], | 16 ], |
| 17 'defines': [ | 17 'defines': [ |
| 18 'NO_TCMALLOC_SAMPLES', | 18 'NO_TCMALLOC_SAMPLES', |
| 19 ], | 19 ], |
| 20 'direct_dependent_settings': { | 20 'direct_dependent_settings': { |
| 21 'configurations': { | 21 'configurations': { |
| 22 'Common': { | 22 'Common_Base': { |
| 23 'msvs_settings': { | 23 'msvs_settings': { |
| 24 'VCLinkerTool': { | 24 'VCLinkerTool': { |
| 25 'IgnoreDefaultLibraryNames': ['libcmtd.lib', 'libcmt.lib'], | 25 'IgnoreDefaultLibraryNames': ['libcmtd.lib', 'libcmt.lib'], |
| 26 'AdditionalDependencies': [ | 26 'AdditionalDependencies': [ |
| 27 '<(SHARED_INTERMEDIATE_DIR)/tcmalloc/libcmt.lib' | 27 '<(SHARED_INTERMEDIATE_DIR)/tcmalloc/libcmt.lib' |
| 28 ], | 28 ], |
| 29 }, | 29 }, |
| 30 }, | 30 }, |
| 31 }, | 31 }, |
| 32 }, | 32 }, |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 'VCLibrarianTool=': { | 143 'VCLibrarianTool=': { |
| 144 'AdditionalOptions': '/ignore:4006,4221', | 144 'AdditionalOptions': '/ignore:4006,4221', |
| 145 'AdditionalLibraryDirectories': | 145 'AdditionalLibraryDirectories': |
| 146 ['<(DEPTH)/third_party/platformsdk_win2008_6_1/files/Lib'], | 146 ['<(DEPTH)/third_party/platformsdk_win2008_6_1/files/Lib'], |
| 147 }, | 147 }, |
| 148 'VCLinkerTool': { | 148 'VCLinkerTool': { |
| 149 'AdditionalOptions': '/ignore:4006', | 149 'AdditionalOptions': '/ignore:4006', |
| 150 }, | 150 }, |
| 151 }, | 151 }, |
| 152 'configurations': { | 152 'configurations': { |
| 153 'Debug': { | 153 'Debug_Base': { |
| 154 'msvs_settings': { | 154 'msvs_settings': { |
| 155 'VCCLCompilerTool': { | 155 'VCCLCompilerTool': { |
| 156 'RuntimeLibrary': '0', | 156 'RuntimeLibrary': '0', |
| 157 }, | 157 }, |
| 158 }, | 158 }, |
| 159 }, | 159 }, |
| 160 }, | 160 }, |
| 161 'conditions': [ | 161 'conditions': [ |
| 162 ['OS=="win"', { | 162 ['OS=="win"', { |
| 163 'defines': [ | 163 'defines': [ |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 289 ], | 289 ], |
| 290 }], | 290 }], |
| 291 ], | 291 ], |
| 292 } | 292 } |
| 293 | 293 |
| 294 # Local Variables: | 294 # Local Variables: |
| 295 # tab-width:2 | 295 # tab-width:2 |
| 296 # indent-tabs-mode:nil | 296 # indent-tabs-mode:nil |
| 297 # End: | 297 # End: |
| 298 # vim: set expandtab tabstop=2 shiftwidth=2: | 298 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |