• 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 
5 PYTHON_VERSION_COMPATIBILITY = "PY2+3"
6 
7 DEPS = [
8   'doxygen',
9   'recipe_engine/path',
10   'recipe_engine/properties',
11   'vars',
12 ]
13 
14 
15 def RunSteps(api):
16   api.vars.setup()
17   api.doxygen.generate_and_upload(api.path['start_dir'])
18 
19 
20 def GenTests(api):
21   yield (
22       api.test('doxygen') +
23       api.properties(buildername='Housekeeper-PerCommit',
24                      repository='https://skia.googlesource.com/skia.git',
25                      revision='abc123',
26                      path_config='kitchen',
27                      swarm_out_dir='[SWARM_OUT_DIR]')
28   )
29