OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 1736 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1747 }, # target_defaults | 1747 }, # target_defaults |
1748 }], # OS=="mac" | 1748 }], # OS=="mac" |
1749 ['OS=="win"', { | 1749 ['OS=="win"', { |
1750 'target_defaults': { | 1750 'target_defaults': { |
1751 'defines': [ | 1751 'defines': [ |
1752 '_WIN32_WINNT=0x0601', | 1752 '_WIN32_WINNT=0x0601', |
1753 'WINVER=0x0601', | 1753 'WINVER=0x0601', |
1754 'WIN32', | 1754 'WIN32', |
1755 '_WINDOWS', | 1755 '_WINDOWS', |
1756 'NOMINMAX', | 1756 'NOMINMAX', |
| 1757 'PSAPI_VERSION=1', |
1757 '_CRT_RAND_S', | 1758 '_CRT_RAND_S', |
1758 'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS', | 1759 'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS', |
1759 'WIN32_LEAN_AND_MEAN', | 1760 'WIN32_LEAN_AND_MEAN', |
1760 '_ATL_NO_OPENGL', | 1761 '_ATL_NO_OPENGL', |
1761 '_HAS_TR1=0', | 1762 '_HAS_TR1=0', |
1762 ], | 1763 ], |
1763 'conditions': [ | 1764 'conditions': [ |
1764 ['component=="static_library"', { | 1765 ['component=="static_library"', { |
1765 'defines': [ | 1766 'defines': [ |
1766 '_HAS_EXCEPTIONS=0', | 1767 '_HAS_EXCEPTIONS=0', |
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1957 # settings in target dicts. SYMROOT is a special case, because many other | 1958 # settings in target dicts. SYMROOT is a special case, because many other |
1958 # Xcode variables depend on it, including variables such as | 1959 # Xcode variables depend on it, including variables such as |
1959 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 1960 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
1960 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 1961 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
1961 # files to appear (when present) in the UI as actual files and not red | 1962 # files to appear (when present) in the UI as actual files and not red |
1962 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 1963 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
1963 # and therefore SYMROOT, needs to be set at the project level. | 1964 # and therefore SYMROOT, needs to be set at the project level. |
1964 'SYMROOT': '<(DEPTH)/xcodebuild', | 1965 'SYMROOT': '<(DEPTH)/xcodebuild', |
1965 }, | 1966 }, |
1966 } | 1967 } |
OLD | NEW |