Update .gn to set a min SDK for macOS.

Currently, WebRTC is setting this config via mac_sdk_min_build_override. The old
mechanism is deprecated, but cannot be removed until chromium is updated to no
longer require mac_sdk_min_build_override.

BUG=chromium:740693
TBR=kjellander@webrtc.org

Review-Url: https://codereview.webrtc.org/2979603002
Cr-Commit-Position: refs/heads/master@{#19006}
This commit is contained in:
erikchen 2017-07-13 09:03:13 -07:00 committed by Commit Bot
parent 732a3437da
commit 0ff7800059

2
.gn
View File

@ -36,4 +36,6 @@ default_args = {
# the args.gn file but this setting will be ignored because we don't support
# component builds.
is_component_build = false
mac_sdk_min = "10.11"
}