OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 # IMPORTANT: | 5 # IMPORTANT: |
6 # Please don't directly include this file if you are building via gyp_chromium, | 6 # Please don't directly include this file if you are building via gyp_chromium, |
7 # since gyp_chromium is automatically forcing its inclusion. | 7 # since gyp_chromium is automatically forcing its inclusion. |
8 { | 8 { |
9 # Variables expected to be overriden on the GYP command line (-D) or by | 9 # Variables expected to be overriden on the GYP command line (-D) or by |
10 # ~/.gyp/include.gypi. | 10 # ~/.gyp/include.gypi. |
(...skipping 3230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3241 'abstract': 1, | 3241 'abstract': 1, |
3242 'msvs_configuration_attributes': { | 3242 'msvs_configuration_attributes': { |
3243 'OutputDirectory': '<(DEPTH)\\build\\<(build_dir_prefix)$(Configuratio
nName)', | 3243 'OutputDirectory': '<(DEPTH)\\build\\<(build_dir_prefix)$(Configuratio
nName)', |
3244 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)', | 3244 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)', |
3245 'CharacterSet': '1', | 3245 'CharacterSet': '1', |
3246 }, | 3246 }, |
3247 'msvs_settings':{ | 3247 'msvs_settings':{ |
3248 'VCCLCompilerTool': { | 3248 'VCCLCompilerTool': { |
3249 'AdditionalOptions': [ | 3249 'AdditionalOptions': [ |
3250 '/bigobj', | 3250 '/bigobj', |
3251 # Tell the compiler to crash on failures. This is undocumented | |
3252 # and unsupported but very handy. | |
3253 '/d2FastFail', | |
3254 ], | 3251 ], |
3255 }, | 3252 }, |
3256 'VCLinkerTool': { | 3253 'VCLinkerTool': { |
3257 # Add the default import libs. | 3254 # Add the default import libs. |
3258 'AdditionalDependencies': [ | 3255 'AdditionalDependencies': [ |
3259 'kernel32.lib', | 3256 'kernel32.lib', |
3260 'gdi32.lib', | 3257 'gdi32.lib', |
3261 'winspool.lib', | 3258 'winspool.lib', |
3262 'comdlg32.lib', | 3259 'comdlg32.lib', |
3263 'advapi32.lib', | 3260 'advapi32.lib', |
(...skipping 3119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6383 # settings in target dicts. SYMROOT is a special case, because many other | 6380 # settings in target dicts. SYMROOT is a special case, because many other |
6384 # Xcode variables depend on it, including variables such as | 6381 # Xcode variables depend on it, including variables such as |
6385 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6382 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
6386 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6383 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
6387 # files to appear (when present) in the UI as actual files and not red | 6384 # files to appear (when present) in the UI as actual files and not red |
6388 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6385 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
6389 # and therefore SYMROOT, needs to be set at the project level. | 6386 # and therefore SYMROOT, needs to be set at the project level. |
6390 'SYMROOT': '<(DEPTH)/xcodebuild', | 6387 'SYMROOT': '<(DEPTH)/xcodebuild', |
6391 }, | 6388 }, |
6392 } | 6389 } |
OLD | NEW |