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 1699 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1710 }], # mac_real_dsym | 1710 }], # mac_real_dsym |
1711 ], # target_conditions | 1711 ], # target_conditions |
1712 }], # (_type=="executable" or _type=="shared_library" or | 1712 }], # (_type=="executable" or _type=="shared_library" or |
1713 # _type=="loadable_module") and mac_strip!=0 | 1713 # _type=="loadable_module") and mac_strip!=0 |
1714 ], # target_conditions | 1714 ], # target_conditions |
1715 }, # target_defaults | 1715 }, # target_defaults |
1716 }], # OS=="mac" | 1716 }], # OS=="mac" |
1717 ['OS=="win"', { | 1717 ['OS=="win"', { |
1718 'target_defaults': { | 1718 'target_defaults': { |
1719 'defines': [ | 1719 'defines': [ |
1720 '_WIN32_WINNT=0x0600', | 1720 '_WIN32_WINNT=0x0601', |
1721 'WINVER=0x0600', | 1721 'WINVER=0x0601', |
1722 'WIN32', | 1722 'WIN32', |
1723 '_WINDOWS', | 1723 '_WINDOWS', |
1724 'NOMINMAX', | 1724 'NOMINMAX', |
1725 '_CRT_RAND_S', | 1725 '_CRT_RAND_S', |
1726 'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS', | 1726 'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS', |
1727 'WIN32_LEAN_AND_MEAN', | 1727 'WIN32_LEAN_AND_MEAN', |
1728 '_ATL_NO_OPENGL', | 1728 '_ATL_NO_OPENGL', |
1729 '_HAS_TR1=0', | 1729 '_HAS_TR1=0', |
1730 ], | 1730 ], |
1731 'conditions': [ | 1731 'conditions': [ |
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1925 # settings in target dicts. SYMROOT is a special case, because many other | 1925 # settings in target dicts. SYMROOT is a special case, because many other |
1926 # Xcode variables depend on it, including variables such as | 1926 # Xcode variables depend on it, including variables such as |
1927 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 1927 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
1928 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 1928 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
1929 # files to appear (when present) in the UI as actual files and not red | 1929 # files to appear (when present) in the UI as actual files and not red |
1930 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 1930 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
1931 # and therefore SYMROOT, needs to be set at the project level. | 1931 # and therefore SYMROOT, needs to be set at the project level. |
1932 'SYMROOT': '<(DEPTH)/xcodebuild', | 1932 'SYMROOT': '<(DEPTH)/xcodebuild', |
1933 }, | 1933 }, |
1934 } | 1934 } |
OLD | NEW |