| OLD | NEW |
| 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 recipe_engine.types import freeze | 5 from infra.libs.infra_types import freeze |
| 6 | 6 |
| 7 DEPS = [ | 7 DEPS = [ |
| 8 'adb', | 8 'adb', |
| 9 'chromium', | 9 'chromium', |
| 10 'chromium_android', | 10 'chromium_android', |
| 11 'json', | 11 'json', |
| 12 'path', | 12 'path', |
| 13 'properties', | 13 'properties', |
| 14 'step', | 14 'step', |
| 15 ] | 15 ] |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 | 224 |
| 225 yield (api.test('gerrit_refs') + | 225 yield (api.test('gerrit_refs') + |
| 226 api.properties.generic( | 226 api.properties.generic( |
| 227 buildername='gerrit_try_builder', | 227 buildername='gerrit_try_builder', |
| 228 slavename='testslave', | 228 slavename='testslave', |
| 229 repo_name='src/repo', | 229 repo_name='src/repo', |
| 230 patch_url='https://the.patch.url/the.patch', | 230 patch_url='https://the.patch.url/the.patch', |
| 231 repo_url='svn://svn.chromium.org/chrome/trunk/src', | 231 repo_url='svn://svn.chromium.org/chrome/trunk/src', |
| 232 revision='4f4b02f6b7fa20a3a25682c457bbc8ad589c8a00', | 232 revision='4f4b02f6b7fa20a3a25682c457bbc8ad589c8a00', |
| 233 internal=True, **({'event.patchSet.ref':'refs/changes/50/176150/1'}))) | 233 internal=True, **({'event.patchSet.ref':'refs/changes/50/176150/1'}))) |
| OLD | NEW |