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

Side by Side Diff: scripts/slave/recipes/skia/infra.py

Issue 1930383002: build: add dependencies on infra_paths (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 4 years, 7 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
« no previous file with comments | « scripts/slave/recipes/gatekeeper.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 5
6 # Recipe for Skia Infra. 6 # Recipe for Skia Infra.
7 7
8 8
9 import re 9 import re
10 10
11 11
12 DEPS = [ 12 DEPS = [
13 'depot_tools/infra_paths',
13 'file', 14 'file',
14 'recipe_engine/path', 15 'recipe_engine/path',
15 'recipe_engine/platform', 16 'recipe_engine/platform',
16 'recipe_engine/properties', 17 'recipe_engine/properties',
17 'recipe_engine/python', 18 'recipe_engine/python',
18 'recipe_engine/raw_io', 19 'recipe_engine/raw_io',
19 'depot_tools/rietveld', 20 'depot_tools/rietveld',
20 'recipe_engine/step', 21 'recipe_engine/step',
21 ] 22 ]
22 23
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 api.properties(slavename='skiabot-linux-infra-001') 135 api.properties(slavename='skiabot-linux-infra-001')
135 ) 136 )
136 yield ( 137 yield (
137 api.test('Infra-PerCommit_try') + 138 api.test('Infra-PerCommit_try') +
138 api.properties(rietveld='https://codereview.chromium.org', 139 api.properties(rietveld='https://codereview.chromium.org',
139 issue=1234, 140 issue=1234,
140 patchset=1, 141 patchset=1,
141 revision=REF_HEAD, 142 revision=REF_HEAD,
142 slavename='skiabot-linux-infra-001') 143 slavename='skiabot-linux-infra-001')
143 ) 144 )
OLDNEW
« no previous file with comments | « scripts/slave/recipes/gatekeeper.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698