blob: 44fe16e8d8bb4b9e63cef1cfb95a2d3df3819913 [file]
"""
Awesome recipe, that does nothing.
"""
from slave import base_recipe
def GetValidBuildNames():
return ['null', 'vaapp-test']
def CreateRecipe(build_name: str, **kwargs):
return NullRecipe(**kwargs)
class NullRecipe(base_recipe.BaseRecipe):
def __init__(self, **kwargs):
base_recipe.BaseRecipe.__init__(
self, enable_build_accelerator=False, **kwargs)
def get_steps(self):
return []