Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(836)

Side by Side Diff: scripts/slave/recipes/v8/auto_roll_v8_deps.py

Issue 1134443004: V8 Buildbot: Fix module dependencies. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 )
OLDNEW
« no previous file with comments | « scripts/slave/recipes/v8/auto_roll_release_process.py ('k') | scripts/slave/recipes/v8/auto_roll_v8rel.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698