blob: 0200e01a59da240d0e2b340b5197d127d1cd4c3d [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 = [
'chromium',
'filter',
'recipe_engine/platform',
'recipe_engine/properties',
]
def RunSteps(api):
api.chromium.set_config('chromium', TARGET_PLATFORM='mac')
api.chromium.apply_config('mb')
api.filter.analyze(
['file1', 'file2'],
['test1', 'test2'],
['compile1', 'compile2'],
'config.json')
def GenTests(api):
yield (
api.test('basic') +
api.platform('mac', 64) +
api.properties(
mastername='test_mastername',
buildername='test_buildername')
)