blob: 8a5cb3c1d5b141a3192264e02b50bd65fa4e3dcb [file] [log] [blame]
# Copyright 2015 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 = [
'depot_tools/bot_update',
'depot_tools/gclient',
'recipe_engine/properties',
]
def _CheckoutSteps(api):
# Checkout custom-tabs-client. The config is implemented at:
# scripts/slave/recipe_modules/gclient/config.py
api.gclient.set_config('custom_tabs_client')
api.bot_update.ensure_checkout()
api.gclient.runhooks()
def RunSteps(api):
_CheckoutSteps(api)
def GenTests(api):
yield (
api.test('basic') +
api.properties(mastername='master.tryserver.client.custom_tabs_client',
buildername='linux',
bot_id='linux_slave')
)