| 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 1873 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1884 # Normally, mac_sdk_min is used to find an SDK that Xcode knows | 1884 # Normally, mac_sdk_min is used to find an SDK that Xcode knows |
| 1885 # about that is at least the specified version. In official builds, | 1885 # about that is at least the specified version. In official builds, |
| 1886 # the SDK must match mac_sdk_min exactly. If the SDK is installed | 1886 # the SDK must match mac_sdk_min exactly. If the SDK is installed |
| 1887 # someplace that Xcode doesn't know about, set mac_sdk_path to the | 1887 # someplace that Xcode doesn't know about, set mac_sdk_path to the |
| 1888 # path to the SDK; when set to a non-empty string, SDK detection | 1888 # path to the SDK; when set to a non-empty string, SDK detection |
| 1889 # based on mac_sdk_min will be bypassed entirely. | 1889 # based on mac_sdk_min will be bypassed entirely. |
| 1890 'conditions': [ | 1890 'conditions': [ |
| 1891 ['OS=="ios"', { | 1891 ['OS=="ios"', { |
| 1892 'mac_sdk_min%': '10.8', | 1892 'mac_sdk_min%': '10.8', |
| 1893 }, { # else OS!="ios" | 1893 }, { # else OS!="ios" |
| 1894 'mac_sdk_min%': '10.6', | 1894 'mac_sdk_min%': '10.10', |
| 1895 }], | 1895 }], |
| 1896 ], | 1896 ], |
| 1897 'mac_sdk_path%': '', | 1897 'mac_sdk_path%': '', |
| 1898 | 1898 |
| 1899 'mac_deployment_target%': '10.6', | 1899 'mac_deployment_target%': '10.6', |
| 1900 }, | 1900 }, |
| 1901 | 1901 |
| 1902 'mac_sdk_min': '<(mac_sdk_min)', | 1902 'mac_sdk_min': '<(mac_sdk_min)', |
| 1903 'mac_sdk_path': '<(mac_sdk_path)', | 1903 'mac_sdk_path': '<(mac_sdk_path)', |
| 1904 'mac_deployment_target': '<(mac_deployment_target)', | 1904 'mac_deployment_target': '<(mac_deployment_target)', |
| (...skipping 4305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6210 # settings in target dicts. SYMROOT is a special case, because many other | 6210 # settings in target dicts. SYMROOT is a special case, because many other |
| 6211 # Xcode variables depend on it, including variables such as | 6211 # Xcode variables depend on it, including variables such as |
| 6212 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6212 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 6213 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6213 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 6214 # files to appear (when present) in the UI as actual files and not red | 6214 # files to appear (when present) in the UI as actual files and not red |
| 6215 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6215 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 6216 # and therefore SYMROOT, needs to be set at the project level. | 6216 # and therefore SYMROOT, needs to be set at the project level. |
| 6217 'SYMROOT': '<(DEPTH)/xcodebuild', | 6217 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 6218 }, | 6218 }, |
| 6219 } | 6219 } |
| OLD | NEW |