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