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 1623 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1634 }, { | 1634 }, { |
1635 'binutils_version%': 0, | 1635 'binutils_version%': 0, |
1636 }], | 1636 }], |
1637 ['OS=="win" and "<!pymod_do_main(dir_exists <(directx_sdk_default_path))"=
="True"', { | 1637 ['OS=="win" and "<!pymod_do_main(dir_exists <(directx_sdk_default_path))"=
="True"', { |
1638 'directx_sdk_path%': '<(directx_sdk_default_path)', | 1638 'directx_sdk_path%': '<(directx_sdk_default_path)', |
1639 }, { | 1639 }, { |
1640 'directx_sdk_path%': '$(DXSDK_DIR)', | 1640 'directx_sdk_path%': '$(DXSDK_DIR)', |
1641 }], | 1641 }], |
1642 ['OS=="win"', { | 1642 ['OS=="win"', { |
1643 'windows_driver_kit_path%': '$(WDK_DIR)', | 1643 'windows_driver_kit_path%': '$(WDK_DIR)', |
| 1644 'enable_handle_verifier%': 1, |
1644 }], | 1645 }], |
1645 ['os_posix==1 and OS!="mac" and OS!="ios"', { | 1646 ['os_posix==1 and OS!="mac" and OS!="ios"', { |
1646 'conditions': [ | 1647 'conditions': [ |
1647 ['target_arch=="mipsel" or target_arch=="mips64el"', { | 1648 ['target_arch=="mipsel" or target_arch=="mips64el"', { |
1648 'werror%': '', | 1649 'werror%': '', |
1649 'disable_nacl%': 1, | 1650 'disable_nacl%': 1, |
1650 'nacl_untrusted_build%': 0, | 1651 'nacl_untrusted_build%': 0, |
1651 'use_allocator%': 'none', | 1652 'use_allocator%': 'none', |
1652 }], | 1653 }], |
1653 # Use a 64-bit linker to avoid running out of address space. The | 1654 # Use a 64-bit linker to avoid running out of address space. The |
(...skipping 4658 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6312 # settings in target dicts. SYMROOT is a special case, because many other | 6313 # settings in target dicts. SYMROOT is a special case, because many other |
6313 # Xcode variables depend on it, including variables such as | 6314 # Xcode variables depend on it, including variables such as |
6314 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6315 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
6315 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6316 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
6316 # files to appear (when present) in the UI as actual files and not red | 6317 # files to appear (when present) in the UI as actual files and not red |
6317 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6318 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
6318 # and therefore SYMROOT, needs to be set at the project level. | 6319 # and therefore SYMROOT, needs to be set at the project level. |
6319 'SYMROOT': '<(DEPTH)/xcodebuild', | 6320 'SYMROOT': '<(DEPTH)/xcodebuild', |
6320 }, | 6321 }, |
6321 } | 6322 } |
OLD | NEW |