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 1264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1275 # are too large and the toolchain fails due to the size of the | 1275 # are too large and the toolchain fails due to the size of the |
1276 # .obj files. | 1276 # .obj files. |
1277 'incremental_chrome_dll%': 1, | 1277 'incremental_chrome_dll%': 1, |
1278 }], | 1278 }], |
1279 # Don't do incremental linking for large modules on 32-bit. | 1279 # Don't do incremental linking for large modules on 32-bit. |
1280 ['MSVS_OS_BITS==32', { | 1280 ['MSVS_OS_BITS==32', { |
1281 'msvs_large_module_debug_link_mode%': '1', # No | 1281 'msvs_large_module_debug_link_mode%': '1', # No |
1282 },{ | 1282 },{ |
1283 'msvs_large_module_debug_link_mode%': '2', # Yes | 1283 'msvs_large_module_debug_link_mode%': '2', # Yes |
1284 }], | 1284 }], |
1285 ['MSVS_VERSION=="2010e" or MSVS_VERSION=="2008e" or MSVS_VERSION=="200 5e"', { | 1285 ['MSVS_VERSION=="2012e" or MSVS_VERSION=="2010e" or MSVS_VERSION=="200 8e" or MSVS_VERSION=="2005e"', { |
wtc
2013/01/20 01:14:38
Do you want me to remove MSVS_VERSION=="2005e"?
W
scottmg
2013/01/22 18:13:17
Yes to both.
| |
1286 'msvs_express%': 1, | 1286 'msvs_express%': 1, |
1287 'secure_atl%': 0, | 1287 'secure_atl%': 0, |
1288 },{ | 1288 },{ |
1289 'msvs_express%': 0, | 1289 'msvs_express%': 0, |
1290 'secure_atl%': 1, | 1290 'secure_atl%': 1, |
1291 }], | 1291 }], |
1292 ], | 1292 ], |
1293 'nacl_win64_defines': [ | 1293 'nacl_win64_defines': [ |
1294 # This flag is used to minimize dependencies when building | 1294 # This flag is used to minimize dependencies when building |
1295 # Native Client loader for 64-bit Windows. | 1295 # Native Client loader for 64-bit Windows. |
(...skipping 2688 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
3984 # settings in target dicts. SYMROOT is a special case, because many other | 3984 # settings in target dicts. SYMROOT is a special case, because many other |
3985 # Xcode variables depend on it, including variables such as | 3985 # Xcode variables depend on it, including variables such as |
3986 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 3986 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
3987 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 3987 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
3988 # files to appear (when present) in the UI as actual files and not red | 3988 # files to appear (when present) in the UI as actual files and not red |
3989 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 3989 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
3990 # and therefore SYMROOT, needs to be set at the project level. | 3990 # and therefore SYMROOT, needs to be set at the project level. |
3991 'SYMROOT': '<(DEPTH)/xcodebuild', | 3991 'SYMROOT': '<(DEPTH)/xcodebuild', |
3992 }, | 3992 }, |
3993 } | 3993 } |
OLD | NEW |