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 1613 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1624 }, { | 1624 }, { |
1625 'binutils_version%': 0, | 1625 'binutils_version%': 0, |
1626 }], | 1626 }], |
1627 ['OS=="win" and "<!pymod_do_main(dir_exists <(directx_sdk_default_path))"=
="True"', { | 1627 ['OS=="win" and "<!pymod_do_main(dir_exists <(directx_sdk_default_path))"=
="True"', { |
1628 'directx_sdk_path%': '<(directx_sdk_default_path)', | 1628 'directx_sdk_path%': '<(directx_sdk_default_path)', |
1629 }, { | 1629 }, { |
1630 'directx_sdk_path%': '$(DXSDK_DIR)', | 1630 'directx_sdk_path%': '$(DXSDK_DIR)', |
1631 }], | 1631 }], |
1632 ['OS=="win"', { | 1632 ['OS=="win"', { |
1633 'windows_driver_kit_path%': '$(WDK_DIR)', | 1633 'windows_driver_kit_path%': '$(WDK_DIR)', |
| 1634 'conditions': [ |
| 1635 ['component!="shared_library"', { |
| 1636 'single_module_mode_handle_verifier%': 0, |
| 1637 }, { |
| 1638 'single_module_mode_handle_verifier%': 1, |
| 1639 }], |
| 1640 ], |
1634 }], | 1641 }], |
1635 ['os_posix==1 and OS!="mac" and OS!="ios"', { | 1642 ['os_posix==1 and OS!="mac" and OS!="ios"', { |
1636 'conditions': [ | 1643 'conditions': [ |
1637 ['target_arch=="mipsel" or target_arch=="mips64el"', { | 1644 ['target_arch=="mipsel" or target_arch=="mips64el"', { |
1638 'werror%': '', | 1645 'werror%': '', |
1639 'disable_nacl%': 1, | 1646 'disable_nacl%': 1, |
1640 'nacl_untrusted_build%': 0, | 1647 'nacl_untrusted_build%': 0, |
1641 'use_allocator%': 'none', | 1648 'use_allocator%': 'none', |
1642 }], | 1649 }], |
1643 # Use a 64-bit linker to avoid running out of address space. The | 1650 # Use a 64-bit linker to avoid running out of address space. The |
(...skipping 4711 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6355 # settings in target dicts. SYMROOT is a special case, because many other | 6362 # settings in target dicts. SYMROOT is a special case, because many other |
6356 # Xcode variables depend on it, including variables such as | 6363 # Xcode variables depend on it, including variables such as |
6357 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6364 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
6358 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6365 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
6359 # files to appear (when present) in the UI as actual files and not red | 6366 # files to appear (when present) in the UI as actual files and not red |
6360 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6367 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
6361 # and therefore SYMROOT, needs to be set at the project level. | 6368 # and therefore SYMROOT, needs to be set at the project level. |
6362 'SYMROOT': '<(DEPTH)/xcodebuild', | 6369 'SYMROOT': '<(DEPTH)/xcodebuild', |
6363 }, | 6370 }, |
6364 } | 6371 } |
OLD | NEW |