| 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 recipe_engine.types import freeze |
| 7 | 7 |
| 8 DEPS = [ | 8 DEPS = [ |
| 9 'depot_tools/bot_update', | 9 'depot_tools/bot_update', |
| 10 'depot_tools/gclient', | 10 'depot_tools/gclient', |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 BASE_URL = 'https://chromium.googlesource.com' | 26 BASE_URL = 'https://chromium.googlesource.com' |
| 27 V8_REPO = BASE_URL + '/v8/v8' | 27 V8_REPO = BASE_URL + '/v8/v8' |
| 28 CR_REPO = BASE_URL + '/chromium/src' | 28 CR_REPO = BASE_URL + '/chromium/src' |
| 29 LOG_TEMPLATE = 'Rolling v8/%s: %s/+log/%s..%s' | 29 LOG_TEMPLATE = 'Rolling v8/%s: %s/+log/%s..%s' |
| 30 | 30 |
| 31 # Skip these dependencies (list without solution name prefix). | 31 # Skip these dependencies (list without solution name prefix). |
| 32 BLACKLIST = [ | 32 BLACKLIST = [ |
| 33 'test/mozilla/data', | 33 'test/mozilla/data', |
| 34 'test/simdjs/data', | 34 'test/simdjs/data', |
| 35 'test/test262/data', | 35 'test/test262/data', |
| 36 'third_party/WebKit/Source/platform/inspector_protocol', |
| 36 ] | 37 ] |
| 37 | 38 |
| 38 def GetDEPS(api, name, repo): | 39 def GetDEPS(api, name, repo): |
| 39 # Make a fake spec. Gclient is not nice to us when having two solutions | 40 # Make a fake spec. Gclient is not nice to us when having two solutions |
| 40 # side by side. The latter checkout kills the former's gclient file. | 41 # side by side. The latter checkout kills the former's gclient file. |
| 41 spec = ('solutions=[{' | 42 spec = ('solutions=[{' |
| 42 '\'managed\':False,' | 43 '\'managed\':False,' |
| 43 '\'name\':\'%s\',' | 44 '\'name\':\'%s\',' |
| 44 '\'url\':\'%s\',' | 45 '\'url\':\'%s\',' |
| 45 '\'deps_file\':\'DEPS\'}]' % (name, repo)) | 46 '\'deps_file\':\'DEPS\'}]' % (name, repo)) |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 ) + | 222 ) + |
| 222 api.override_step_data( | 223 api.override_step_data( |
| 223 'look up base_trace_event_common', | 224 'look up base_trace_event_common', |
| 224 api.raw_io.stream_output('deadbeef\tHEAD', stream='stdout'), | 225 api.raw_io.stream_output('deadbeef\tHEAD', stream='stdout'), |
| 225 ) + | 226 ) + |
| 226 api.override_step_data( | 227 api.override_step_data( |
| 227 'git diff', | 228 'git diff', |
| 228 api.raw_io.stream_output('some difference', stream='stdout'), | 229 api.raw_io.stream_output('some difference', stream='stdout'), |
| 229 ) | 230 ) |
| 230 ) | 231 ) |
| OLD | NEW |