1# Copyright 2018 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5DEPS = [
6    'recipe_engine/cipd',
7    'recipe_engine/context',
8    'recipe_engine/json',
9    'recipe_engine/path',
10    'recipe_engine/platform',
11    'recipe_engine/step',
12]
13
14from recipe_engine.recipe_api import Property
15from recipe_engine.config import ConfigGroup, Single
16
17PROPERTIES = {
18    '$gn/windows_sdk':
19        Property(
20            help='Properties specifically for the windows_sdk module.',
21            param_name='sdk_properties',
22            kind=ConfigGroup(
23                # The CIPD package and version.
24                sdk_package=Single(str),
25                sdk_version=Single(str)),
26            default={
27                'sdk_package': 'chrome_internal/third_party/sdk/windows',
28                'sdk_version': 'uploaded:2019-09-06'
29            },
30        )
31}
32