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