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 2136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2147 # | 2147 # |
2148 # Abstract base configurations to cover common attributes. | 2148 # Abstract base configurations to cover common attributes. |
2149 # | 2149 # |
2150 'Common_Base': { | 2150 'Common_Base': { |
2151 'abstract': 1, | 2151 'abstract': 1, |
2152 'msvs_configuration_attributes': { | 2152 'msvs_configuration_attributes': { |
2153 'OutputDirectory': '<(DEPTH)\\build\\<(build_dir_prefix)$(Configuratio
nName)', | 2153 'OutputDirectory': '<(DEPTH)\\build\\<(build_dir_prefix)$(Configuratio
nName)', |
2154 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)', | 2154 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)', |
2155 'CharacterSet': '1', | 2155 'CharacterSet': '1', |
2156 }, | 2156 }, |
| 2157 # Add the default import libs. |
| 2158 'msvs_settings':{ |
| 2159 'VCLinkerTool': { |
| 2160 'AdditionalDependencies': [ |
| 2161 'kernel32.lib', |
| 2162 'gdi32.lib', |
| 2163 'winspool.lib', |
| 2164 'comdlg32.lib', |
| 2165 'advapi32.lib', |
| 2166 'shell32.lib', |
| 2167 'ole32.lib', |
| 2168 'oleaut32.lib', |
| 2169 'user32.lib', |
| 2170 'uuid.lib', |
| 2171 'odbc32.lib', |
| 2172 'odbccp32.lib', |
| 2173 ], |
| 2174 }, |
| 2175 }, |
2157 }, | 2176 }, |
2158 'x86_Base': { | 2177 'x86_Base': { |
2159 'abstract': 1, | 2178 'abstract': 1, |
2160 'msvs_settings': { | 2179 'msvs_settings': { |
2161 'VCLinkerTool': { | 2180 'VCLinkerTool': { |
2162 'TargetMachine': '1', | 2181 'TargetMachine': '1', |
2163 }, | 2182 }, |
2164 }, | 2183 }, |
2165 'msvs_configuration_platform': 'Win32', | 2184 'msvs_configuration_platform': 'Win32', |
2166 }, | 2185 }, |
(...skipping 1862 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4029 # settings in target dicts. SYMROOT is a special case, because many other | 4048 # settings in target dicts. SYMROOT is a special case, because many other |
4030 # Xcode variables depend on it, including variables such as | 4049 # Xcode variables depend on it, including variables such as |
4031 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4050 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
4032 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4051 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
4033 # files to appear (when present) in the UI as actual files and not red | 4052 # files to appear (when present) in the UI as actual files and not red |
4034 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4053 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
4035 # and therefore SYMROOT, needs to be set at the project level. | 4054 # and therefore SYMROOT, needs to be set at the project level. |
4036 'SYMROOT': '<(DEPTH)/xcodebuild', | 4055 'SYMROOT': '<(DEPTH)/xcodebuild', |
4037 }, | 4056 }, |
4038 } | 4057 } |
OLD | NEW |