blob: bf65159797e1bfa7fb1ed40335b023865c4a568b [file] [log] [blame]
# Copyright 2019 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
DEPS = [
"fuchsia/build",
"fuchsia/git",
"recipe_engine/context",
"recipe_engine/file",
"recipe_engine/json",
"recipe_engine/path",
"recipe_engine/python",
"recipe_engine/raw_io",
"recipe_engine/step",
"recipe_engine/tricium",
]
from recipe_engine.recipe_api import Property
from recipe_engine.config import List
PROPERTIES = {
"analyses": Property(
param_name="analyses",
kind=List(basestring),
help="Enabled analyses",
default=[],
),
"compdb_filtered_paths": Property(
help="List of paths to filter out of the compilation database (e.g. gen/llcpp or third_party)",
param_name="compdb_filtered_paths",
kind=List(str),
default=[],
),
}