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 = "PY2+3" 6 7DEPS = [ 8 'doxygen', 9 'recipe_engine/path', 10 'recipe_engine/properties', 11 'vars', 12] 13 14 15def RunSteps(api): 16 api.vars.setup() 17 api.doxygen.generate_and_upload(api.path['start_dir']) 18 19 20def 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