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 1944 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1955 # someplace that Xcode doesn't know about, set mac_sdk_path to the | 1955 # someplace that Xcode doesn't know about, set mac_sdk_path to the |
1956 # path to the SDK; when set to a non-empty string, SDK detection | 1956 # path to the SDK; when set to a non-empty string, SDK detection |
1957 # based on mac_sdk_min will be bypassed entirely. | 1957 # based on mac_sdk_min will be bypassed entirely. |
1958 'conditions': [ | 1958 'conditions': [ |
1959 ['OS=="ios"', { | 1959 ['OS=="ios"', { |
1960 # The iOS build can use Xcode's clang, and that will complain | 1960 # The iOS build can use Xcode's clang, and that will complain |
1961 # about -stdlib=libc++ if the deployment target is not at least | 1961 # about -stdlib=libc++ if the deployment target is not at least |
1962 # 10.7. | 1962 # 10.7. |
1963 'mac_deployment_target%': '10.7', | 1963 'mac_deployment_target%': '10.7', |
1964 }, { # else OS!="ios" | 1964 }, { # else OS!="ios" |
1965 'mac_deployment_target%': '10.6', | 1965 'mac_deployment_target%': '10.7', |
Nico
2016/04/04 18:01:23
These can merge again now, right? iOS only cares a
| |
1966 }], | 1966 }], |
1967 ], | 1967 ], |
1968 'mac_sdk_min%': '10.10', | 1968 'mac_sdk_min%': '10.10', |
1969 'mac_sdk_path%': '', | 1969 'mac_sdk_path%': '', |
1970 }, | 1970 }, |
1971 | 1971 |
1972 'mac_sdk_min': '<(mac_sdk_min)', | 1972 'mac_sdk_min': '<(mac_sdk_min)', |
1973 'mac_sdk_path': '<(mac_sdk_path)', | 1973 'mac_sdk_path': '<(mac_sdk_path)', |
1974 'mac_deployment_target': '<(mac_deployment_target)', | 1974 'mac_deployment_target': '<(mac_deployment_target)', |
1975 | 1975 |
(...skipping 4404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
6380 # settings in target dicts. SYMROOT is a special case, because many other | 6380 # settings in target dicts. SYMROOT is a special case, because many other |
6381 # Xcode variables depend on it, including variables such as | 6381 # Xcode variables depend on it, including variables such as |
6382 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6382 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
6383 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6383 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
6384 # files to appear (when present) in the UI as actual files and not red | 6384 # files to appear (when present) in the UI as actual files and not red |
6385 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6385 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
6386 # and therefore SYMROOT, needs to be set at the project level. | 6386 # and therefore SYMROOT, needs to be set at the project level. |
6387 'SYMROOT': '<(DEPTH)/xcodebuild', | 6387 'SYMROOT': '<(DEPTH)/xcodebuild', |
6388 }, | 6388 }, |
6389 } | 6389 } |
OLD | NEW |