Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(592)

Side by Side Diff: scripts/slave/recipe_modules/cronet/example.py

Issue 1241323004: Cross-repo recipe package system. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Roll to latest recipes-py Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 from infra.libs.infra_types import freeze 5 from recipe_engine.types import freeze
6 6
7 DEPS = [ 7 DEPS = [
8 'cronet', 8 'cronet',
9 'properties', 9 'properties',
10 ] 10 ]
11 11
12 BUILDERS = freeze({ 12 BUILDERS = freeze({
13 'local_test': { 13 'local_test': {
14 'recipe_config': 'main_builder', 14 'recipe_config': 'main_builder',
15 'run_tests': True, 15 'run_tests': True,
(...skipping 24 matching lines...) Expand all
40 bot_id = 'local_test' 40 bot_id = 'local_test'
41 props = api.properties.generic( 41 props = api.properties.generic(
42 buildername=bot_id, 42 buildername=bot_id,
43 revision='4f4b02f6b7fa20a3a25682c457bbc8ad589c8a00', 43 revision='4f4b02f6b7fa20a3a25682c457bbc8ad589c8a00',
44 repository='https://chromium.googlesource.com/chromium/src', 44 repository='https://chromium.googlesource.com/chromium/src',
45 branch='master', 45 branch='master',
46 project='src', 46 project='src',
47 ) 47 )
48 yield api.test(bot_id) + props 48 yield api.test(bot_id) + props
49 49
OLDNEW
« no previous file with comments | « scripts/slave/recipe_modules/cronet/api.py ('k') | scripts/slave/recipe_modules/example/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698