Bump minimum MacOS version to 10.13

We've removed all of our buildbots running 10.10, and Android Studio
requires 10.14+, so our oldest users are now the 10.13 buildbots.

Bug: 191879468
Change-Id: Ie9fdb59f12bb672c5f2448cb558f54a2e10039fb
This commit is contained in:
Dan Willemsen 2021-07-29 12:16:14 -07:00
parent c4dae8eb27
commit 3dc4326ce7

View file

@ -53,14 +53,12 @@ var (
}
darwinSupportedSdkVersions = []string{
"10.10",
"10.11",
"10.12",
"10.13",
"10.14",
"10.15",
"11.0",
"11.1",
"11.3",
}
darwinAvailableLibraries = append(
@ -89,7 +87,7 @@ func init() {
pctx.VariableFunc("macSdkRoot", func(ctx android.PackageVarContext) string {
return getMacTools(ctx).sdkRoot
})
pctx.StaticVariable("macMinVersion", "10.10")
pctx.StaticVariable("macMinVersion", "10.13")
pctx.VariableFunc("MacArPath", func(ctx android.PackageVarContext) string {
return getMacTools(ctx).arPath
})