| OLD | NEW |
| 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 Loading... |
| 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 ) |
| OLD | NEW |