| 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 3210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3221 # | 3221 # |
| 3222 # Abstract base configurations to cover common attributes. | 3222 # Abstract base configurations to cover common attributes. |
| 3223 # | 3223 # |
| 3224 'Common_Base': { | 3224 'Common_Base': { |
| 3225 'abstract': 1, | 3225 'abstract': 1, |
| 3226 'msvs_configuration_attributes': { | 3226 'msvs_configuration_attributes': { |
| 3227 'OutputDirectory': '<(DEPTH)\\build\\<(build_dir_prefix)$(Configuratio
nName)', | 3227 'OutputDirectory': '<(DEPTH)\\build\\<(build_dir_prefix)$(Configuratio
nName)', |
| 3228 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)', | 3228 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)', |
| 3229 'CharacterSet': '1', | 3229 'CharacterSet': '1', |
| 3230 }, | 3230 }, |
| 3231 # Add the default import libs. | |
| 3232 'msvs_settings':{ | 3231 'msvs_settings':{ |
| 3232 'VCCompilerTool': { |
| 3233 'AdditionalOptions': [ |
| 3234 '/bigobj', |
| 3235 ], |
| 3236 }, |
| 3233 'VCLinkerTool': { | 3237 'VCLinkerTool': { |
| 3238 # Add the default import libs. |
| 3234 'AdditionalDependencies': [ | 3239 'AdditionalDependencies': [ |
| 3235 'kernel32.lib', | 3240 'kernel32.lib', |
| 3236 'gdi32.lib', | 3241 'gdi32.lib', |
| 3237 'winspool.lib', | 3242 'winspool.lib', |
| 3238 'comdlg32.lib', | 3243 'comdlg32.lib', |
| 3239 'advapi32.lib', | 3244 'advapi32.lib', |
| 3240 'shell32.lib', | 3245 'shell32.lib', |
| 3241 'ole32.lib', | 3246 'ole32.lib', |
| 3242 'oleaut32.lib', | 3247 'oleaut32.lib', |
| 3243 'user32.lib', | 3248 'user32.lib', |
| (...skipping 2948 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6192 # settings in target dicts. SYMROOT is a special case, because many other | 6197 # settings in target dicts. SYMROOT is a special case, because many other |
| 6193 # Xcode variables depend on it, including variables such as | 6198 # Xcode variables depend on it, including variables such as |
| 6194 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6199 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 6195 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6200 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 6196 # files to appear (when present) in the UI as actual files and not red | 6201 # files to appear (when present) in the UI as actual files and not red |
| 6197 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6202 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 6198 # and therefore SYMROOT, needs to be set at the project level. | 6203 # and therefore SYMROOT, needs to be set at the project level. |
| 6199 'SYMROOT': '<(DEPTH)/xcodebuild', | 6204 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 6200 }, | 6205 }, |
| 6201 } | 6206 } |
| OLD | NEW |