• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
5PYTHON_VERSION_COMPATIBILITY = 'PY3'
6
7DEPS = [
8    'recipe_engine/cipd',
9    'recipe_engine/context',
10    'recipe_engine/json',
11    'recipe_engine/path',
12    'recipe_engine/platform',
13    'recipe_engine/step',
14]
15
16from recipe_engine.recipe_api import Property
17from recipe_engine.config import ConfigGroup, Single
18
19PROPERTIES = {
20    '$gn/windows_sdk':
21        Property(
22            help='Properties specifically for the windows_sdk module.',
23            param_name='sdk_properties',
24            kind=ConfigGroup(
25                # The CIPD package and version.
26                sdk_package=Single(str),
27                sdk_version=Single(str)),
28            default={
29                'sdk_package': 'chrome_internal/third_party/sdk/windows',
30                'sdk_version': 'uploaded:2019-09-06'
31            },
32        )
33}
34