OLD | NEW |
1 | 1 |
2 # Copyright 2014 The Chromium Authors. All rights reserved. | 2 # Copyright 2014 The Chromium Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 from recipe_engine.types import freeze | 6 from infra.libs.infra_types import freeze |
7 | 7 |
8 DEPS = [ | 8 DEPS = [ |
9 'bot_update', | 9 'bot_update', |
10 'gclient', | 10 'gclient', |
11 'git', | 11 'git', |
12 'json', | 12 'json', |
13 'path', | 13 'path', |
14 'properties', | 14 'properties', |
15 'python', | 15 'python', |
16 'raw_io', | 16 'raw_io', |
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 ) + | 214 ) + |
215 api.override_step_data( | 215 api.override_step_data( |
216 'look up another_dep', | 216 'look up another_dep', |
217 api.raw_io.stream_output('deadbeaf\tHEAD', stream='stdout'), | 217 api.raw_io.stream_output('deadbeaf\tHEAD', stream='stdout'), |
218 ) + | 218 ) + |
219 api.override_step_data( | 219 api.override_step_data( |
220 'git diff', | 220 'git diff', |
221 api.raw_io.stream_output('some difference', stream='stdout'), | 221 api.raw_io.stream_output('some difference', stream='stdout'), |
222 ) | 222 ) |
223 ) | 223 ) |
OLD | NEW |