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