Bump mac deployment target to 10.9

BUG=webrtc:6431

Review-Url: https://codereview.webrtc.org/2488943002
Cr-Commit-Position: refs/heads/master@{#15004}
This commit is contained in:
kthelgason
2016-11-09 07:44:27 -08:00
committed by Commit bot
parent ccf10219cd
commit cc2d1c6917
3 changed files with 4 additions and 4 deletions

View File

@ -11,7 +11,7 @@
# 10.11 min SDK but those targets are only used in non-Chromium builds. We can
# remove this when Chromium drops 10.6 support and also requires 10.7.
mac_sdk_min_build_override = "10.11"
mac_deployment_target_build_override = "10.7"
mac_deployment_target_build_override = "10.9"
# Some non-Chromium builds don't support building java targets.
enable_java_templates = true

View File

@ -551,7 +551,7 @@ if (rtc_include_tests) {
shard_timeout = 900
}
if (is_ios || (is_mac && mac_deployment_target == "10.7")) {
if (is_ios || is_mac) {
deps += [
"sdk:rtc_sdk_peerconnection_objc",
"system_wrappers:system_wrappers_default",

View File

@ -16,14 +16,14 @@ if (is_ios) {
}
group("sdk") {
if (is_ios || (is_mac && mac_deployment_target == "10.7")) {
if (is_ios || is_mac) {
public_deps = [
":rtc_sdk_framework_objc",
]
}
}
if (is_ios || (is_mac && mac_deployment_target == "10.7")) {
if (is_ios || is_mac) {
config("rtc_sdk_common_objc_config") {
include_dirs = [
"objc/Framework/Classes",