OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
6 | 6 |
7 # See https://bugs.chromium.org/p/webrtc/issues/detail?id=5453. | 7 # See https://bugs.chromium.org/p/webrtc/issues/detail?id=5453. |
8 # We can drop the rtc_require_mac_10_7_deployment flag when Chromium | 8 # We can drop the rtc_require_mac_10_7_deployment flag when Chromium |
9 # also requires a 10.7 deployment target. | 9 # also requires a 10.7 deployment target. |
10 import("//build_overrides/build.gni") | 10 import("//build_overrides/build.gni") |
11 | 11 |
12 declare_args() { | 12 declare_args() { |
13 # Minimum supported version of the Mac SDK. | 13 # Minimum supported version of the Mac SDK. |
14 mac_sdk_min = mac_sdk_min_build_override | 14 mac_sdk_min = mac_sdk_min_build_override |
15 | 15 |
16 # Minimum supported version of OSX. | 16 # Minimum supported version of OSX. |
17 mac_deployment_target = mac_deployment_target_build_override | 17 mac_deployment_target = mac_deployment_target_build_override |
18 | 18 |
19 # Path to a specific version of the Mac SDK, not including a backslash at | 19 # Path to a specific version of the Mac SDK, not including a slash at the end. |
20 # the end. If empty, the path to the lowest version greater than or equal to | 20 # If empty, the path to the lowest version greater than or equal to |
21 # mac_sdk_min is used. | 21 # mac_sdk_min is used. |
22 mac_sdk_path = "" | 22 mac_sdk_path = "" |
23 | 23 |
24 # The SDK name as accepted by xcodebuild. | 24 # The SDK name as accepted by xcodebuild. |
25 mac_sdk_name = "macosx" | 25 mac_sdk_name = "macosx" |
26 } | 26 } |
27 | 27 |
28 # Check that the version of macOS SDK used is the one requested when building | 28 # Check that the version of macOS SDK used is the one requested when building |
29 # a version of Chrome shipped to the users. Disable the check if building for | 29 # a version of Chrome shipped to the users. Disable the check if building for |
30 # iOS as the version macOS SDK used is not relevant for the tool build for the | 30 # iOS as the version macOS SDK used is not relevant for the tool build for the |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 " either upgrade Xcode to the latest version or install the Mac O
S X") | 81 " either upgrade Xcode to the latest version or install the Mac O
S X") |
82 print( | 82 print( |
83 " $mac_sdk_min_build_override SDK. For more information, see http
s://crbug.com/620127.") | 83 " $mac_sdk_min_build_override SDK. For more information, see http
s://crbug.com/620127.") |
84 print() | 84 print() |
85 print(" Current SDK Version: $mac_sdk_version") | 85 print(" Current SDK Version: $mac_sdk_version") |
86 print(" Current Xcode Version: $xcode_version ($xcode_build)") | 86 print(" Current Xcode Version: $xcode_version ($xcode_build)") |
87 print( | 87 print( |
88 "*************************************************************************
*******") | 88 "*************************************************************************
*******") |
89 assert(false, "SDK is incompatible with Xcode") | 89 assert(false, "SDK is incompatible with Xcode") |
90 } | 90 } |
OLD | NEW |