blob: a0e1a97588e5540cb924736015ff1d95e659bc98 [file] [log] [blame]
# Copyright 2017 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.
DEPS = [
'goma',
'recipe_engine/properties',
]
def RunSteps(api):
api.goma.ensure_goma(canary=True)
api.goma.start()
api.goma.stop()
def GenTests(api):
yield (
api.test('basic') +
api.properties(buildername='test_buildername')
)