blob: 81c6bf1da6be09b82b2dd0c27c7f1374b96448d9 [file] [log] [blame]
# Copyright 2018 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
from recipe_engine import recipe_api
class DoxygenApi(recipe_api.RecipeApi):
def generate_and_upload(self, skia_dir):
with self.m.context(cwd=skia_dir):
self.m.run(
self.m.step,
'generate and upload doxygen',
cmd=['python3', self.resource('generate_and_upload_doxygen.py')],
abort_on_failure=False)