Victor Hugo Vianna Silva 31d0ebd65f Update Mac version in bots
Bug: 448679376
Change-Id: I077cd31073889afe0519195a8c459570bc95e4a8
2025-10-14 11:28:15 +01:00

37 lines
1.1 KiB
Python

# Copyright 2025 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
from recipe_engine.recipe_api import Property
from recipe_engine.config import ConfigGroup, Single
DEPS = [
'recipe_engine/cipd',
'recipe_engine/context',
'recipe_engine/json',
'recipe_engine/path',
'recipe_engine/platform',
'recipe_engine/step',
]
PROPERTIES = {
'$libyuv/macos_sdk':
Property(
help='Properties specifically for the macos_sdk module.',
param_name='sdk_properties',
kind=ConfigGroup(
sdk_version=Single(str),
tool_pkg=Single(str),
tool_ver=Single(str),
),
default={
# See https://xcodereleases.com/.
'sdk_version':
'16c5032a', # Xcode 16.2
'tool_package':
'infra/tools/mac_toolchain/${platform}',
'tool_version':
'git_revision:29f9c476dd951c2dd7b0d43fa10ac2bd3f185787',
},
)
}