| 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 infra.libs.infra_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', |
| 17 'step', | 17 'step', |
| 18 'v8', |
| 18 ] | 19 ] |
| 19 | 20 |
| 20 BASE_URL = 'https://chromium.googlesource.com' | 21 BASE_URL = 'https://chromium.googlesource.com' |
| 21 V8_REPO = BASE_URL + '/v8/v8' | 22 V8_REPO = BASE_URL + '/v8/v8' |
| 22 CR_REPO = BASE_URL + '/chromium/src' | 23 CR_REPO = BASE_URL + '/chromium/src' |
| 23 V8_DEPS_DIFFS = freeze({ | 24 V8_DEPS_DIFFS = freeze({ |
| 24 'tools/gyp': 'build/gyp', | 25 'tools/gyp': 'build/gyp', |
| 25 }) | 26 }) |
| 26 | 27 |
| 27 | 28 |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 ) + | 205 ) + |
| 205 api.override_step_data( | 206 api.override_step_data( |
| 206 'look up another/dep', | 207 'look up another/dep', |
| 207 api.raw_io.stream_output('deadbeaf\tHEAD', stream='stdout'), | 208 api.raw_io.stream_output('deadbeaf\tHEAD', stream='stdout'), |
| 208 ) + | 209 ) + |
| 209 api.override_step_data( | 210 api.override_step_data( |
| 210 'git diff', | 211 'git diff', |
| 211 api.raw_io.stream_output('some difference', stream='stdout'), | 212 api.raw_io.stream_output('some difference', stream='stdout'), |
| 212 ) | 213 ) |
| 213 ) | 214 ) |
| OLD | NEW |