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 1687 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1698 } | 1698 } |
1699 } | 1699 } |
1700 }], # OS==win | 1700 }], # OS==win |
1701 ], # conditions for coverage | 1701 ], # conditions for coverage |
1702 }], # coverage!=0 | 1702 }], # coverage!=0 |
1703 ['OS=="win"', { | 1703 ['OS=="win"', { |
1704 'defines': [ | 1704 'defines': [ |
1705 '__STD_C', | 1705 '__STD_C', |
1706 '_CRT_SECURE_NO_DEPRECATE', | 1706 '_CRT_SECURE_NO_DEPRECATE', |
1707 '_SCL_SECURE_NO_DEPRECATE', | 1707 '_SCL_SECURE_NO_DEPRECATE', |
| 1708 # This define is required to pull in the new Win8 interfaces from |
| 1709 # system headers like ShObjIdl.h. |
| 1710 'NTDDI_VERSION=0x06020000', |
1708 ], | 1711 ], |
1709 'include_dirs': [ | 1712 'include_dirs': [ |
1710 '<(DEPTH)/third_party/wtl/include', | 1713 '<(DEPTH)/third_party/wtl/include', |
1711 ], | 1714 ], |
1712 'conditions': [ | 1715 'conditions': [ |
1713 ['win_z7!=0', { | 1716 ['win_z7!=0', { |
1714 'msvs_settings': { | 1717 'msvs_settings': { |
1715 # Generates debug info when win_z7=1 | 1718 # Generates debug info when win_z7=1 |
1716 # even if fastbuild=1 (that makes GenerateDebugInformation false). | 1719 # even if fastbuild=1 (that makes GenerateDebugInformation false). |
1717 'VCLinkerTool': { | 1720 'VCLinkerTool': { |
(...skipping 1940 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3658 # settings in target dicts. SYMROOT is a special case, because many other | 3661 # settings in target dicts. SYMROOT is a special case, because many other |
3659 # Xcode variables depend on it, including variables such as | 3662 # Xcode variables depend on it, including variables such as |
3660 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 3663 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
3661 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 3664 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
3662 # files to appear (when present) in the UI as actual files and not red | 3665 # files to appear (when present) in the UI as actual files and not red |
3663 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 3666 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
3664 # and therefore SYMROOT, needs to be set at the project level. | 3667 # and therefore SYMROOT, needs to be set at the project level. |
3665 'SYMROOT': '<(DEPTH)/xcodebuild', | 3668 'SYMROOT': '<(DEPTH)/xcodebuild', |
3666 }, | 3669 }, |
3667 } | 3670 } |
OLD | NEW |