| 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 1417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1428 ['OS=="win"', { | 1428 ['OS=="win"', { |
| 1429 'conditions': [ | 1429 'conditions': [ |
| 1430 # This is the architecture convention used in WinSDK paths. | 1430 # This is the architecture convention used in WinSDK paths. |
| 1431 ['target_arch=="ia32"', { | 1431 ['target_arch=="ia32"', { |
| 1432 'winsdk_arch%': 'x86', | 1432 'winsdk_arch%': 'x86', |
| 1433 },{ | 1433 },{ |
| 1434 'winsdk_arch%': '<(target_arch)', | 1434 'winsdk_arch%': '<(target_arch)', |
| 1435 }], | 1435 }], |
| 1436 ['component=="shared_library"', { | 1436 ['component=="shared_library"', { |
| 1437 'win_use_allocator_shim%': 0, | 1437 'win_use_allocator_shim%': 0, |
| 1438 },{ |
| 1439 # Turn on multiple dll by default on Windows when in static_library. |
| 1440 'chrome_multiple_dll%': 1, |
| 1438 }], | 1441 }], |
| 1439 ['component=="shared_library" and "<(GENERATOR)"=="ninja"', { | 1442 ['component=="shared_library" and "<(GENERATOR)"=="ninja"', { |
| 1440 # Only enabled by default for ninja because it's buggy in VS. | 1443 # Only enabled by default for ninja because it's buggy in VS. |
| 1441 # Not enabled for component=static_library because some targets | 1444 # Not enabled for component=static_library because some targets |
| 1442 # are too large and the toolchain fails due to the size of the | 1445 # are too large and the toolchain fails due to the size of the |
| 1443 # .obj files. | 1446 # .obj files. |
| 1444 'incremental_chrome_dll%': 1, | 1447 'incremental_chrome_dll%': 1, |
| 1445 }], | 1448 }], |
| 1446 # Don't do incremental linking for large modules on 32-bit. | 1449 # Don't do incremental linking for large modules on 32-bit. |
| 1447 ['MSVS_OS_BITS==32', { | 1450 ['MSVS_OS_BITS==32', { |
| (...skipping 3258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4706 # settings in target dicts. SYMROOT is a special case, because many other | 4709 # settings in target dicts. SYMROOT is a special case, because many other |
| 4707 # Xcode variables depend on it, including variables such as | 4710 # Xcode variables depend on it, including variables such as |
| 4708 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4711 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 4709 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4712 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 4710 # files to appear (when present) in the UI as actual files and not red | 4713 # files to appear (when present) in the UI as actual files and not red |
| 4711 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4714 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 4712 # and therefore SYMROOT, needs to be set at the project level. | 4715 # and therefore SYMROOT, needs to be set at the project level. |
| 4713 'SYMROOT': '<(DEPTH)/xcodebuild', | 4716 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 4714 }, | 4717 }, |
| 4715 } | 4718 } |
| OLD | NEW |