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', |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 ], | 134 ], |
135 # sources! means that these are not compiled directly. | 135 # sources! means that these are not compiled directly. |
136 'sources!': [ | 136 'sources!': [ |
137 'generic_allocators.cc', | 137 'generic_allocators.cc', |
138 'tcmalloc.cc', | 138 'tcmalloc.cc', |
139 'win_allocator.cc', | 139 'win_allocator.cc', |
140 ], | 140 ], |
141 'msvs_settings': { | 141 'msvs_settings': { |
142 # TODO(sgk): merge this with build/common.gypi settings | 142 # TODO(sgk): merge this with build/common.gypi settings |
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_Base': { | 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 }, |
(...skipping 129 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 |