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

Side by Side Diff: scripts/slave/recipes/legion/legion.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 (c) 2014 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 """Launches Legion tests.""" 5 """Launches Legion tests."""
6 6
7 from infra.libs.infra_types import freeze 7 from recipe_engine.types import freeze
8 8
9 DEPS = [ 9 DEPS = [
10 'bot_update', 10 'bot_update',
11 'gclient', 11 'gclient',
12 'isolate', 12 'isolate',
13 'legion', 13 'legion',
14 'path', 14 'path',
15 'properties', 15 'properties',
16 'swarming', 16 'swarming',
17 ] 17 ]
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 name=name, 75 name=name,
76 path=api.path['checkout'].join(*path), 76 path=api.path['checkout'].join(*path),
77 config_vars=config['config_vars'] 77 config_vars=config['config_vars']
78 ) 78 )
79 79
80 api.legion.execute(controller) 80 api.legion.execute(controller)
81 81
82 82
83 def GenTests(api): 83 def GenTests(api):
84 yield api.test('basic') + api.properties.generic() 84 yield api.test('basic') + api.properties.generic()
OLDNEW
« no previous file with comments | « scripts/slave/recipes/gatekeeper.expected/real.json ('k') | scripts/slave/recipes/libvpx/android_unittests.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698