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

Side by Side Diff: deps/multivm.deps/DEPS

Issue 353993002: Multivm branch: Fetch reference build from archive using git hash, not revision. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 6 years, 5 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
« no previous file with comments | « dart/tools/bots/get_chromium_build.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 import gclient_utils 1 import gclient_utils
2 import os 2 import os
3 3
4 path = gclient_utils.FindGclientRoot(os.getcwd()) 4 path = gclient_utils.FindGclientRoot(os.getcwd())
5 execfile(os.path.join(path, 'multivm.deps', 'DEPS.chromium')) # Include proper C hromium DEPS. 5 execfile(os.path.join(path, 'multivm.deps', 'DEPS.chromium')) # Include proper C hromium DEPS.
6 6
7 # Now we need to override some settings and add some new ones. 7 # Now we need to override some settings and add some new ones.
8 8
9 vars.update({ 9 vars.update({
10 "chromium_url": "http://src.chromium.org/svn", 10 "chromium_url": "http://src.chromium.org/svn",
11 "multivm_base": "http://src.chromium.org", 11 "multivm_base": "http://src.chromium.org",
12 "multivm_chromium_branch": "/chrome/trunk/src", 12 "multivm_chromium_branch": "/chrome/trunk/src",
13 "multivm_chromium_revision": "278856", 13 "multivm_chromium_revision": "278856",
14 # There were no uploaded chromium builds within 100 revisions of 277580. 14 # Git hashes of snapshotted chromium builds closest to r278856.
15 "chromium_base_revision": "278856", 15 "chromium_base_revision":
16 '{"Windows":"37fde6a752162681ce6b62f1a96683483f2df596", ' +
17 ' "Darwin": "db25a7e9bf34e638a1cbb4c8974ca566c22eb62c", ' +
18 ' "Linux": "abe29e2ae1ad6d9bd8a7bfa23b3316a203d39ef2"}'
16 "dart_tools_branch": "/branches/bleeding_edge/dart/tools", 19 "dart_tools_branch": "/branches/bleeding_edge/dart/tools",
17 "dart_tools_revision": "36985", 20 "dart_tools_revision": "36985",
18 "multivm_blink_branch": "/blink/branches/dart/multivm", 21 "multivm_blink_branch": "/blink/branches/dart/multivm",
19 "multivm_blink_revision": "176873", 22 "multivm_blink_revision": "176873",
20 }) 23 })
21 24
22 def massage_deps(deps): 25 def massage_deps(deps):
23 for key, value in deps.items(): 26 for key, value in deps.items():
24 if value is None: continue 27 if value is None: continue
25 28
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 67
65 hooks.append({ 68 hooks.append({
66 # Set the revision for a lazily downloaded reference build of chromium, 69 # Set the revision for a lazily downloaded reference build of chromium,
67 # with which to run perf tests. 70 # with which to run perf tests.
68 'name': 'set_reference_build', 71 'name': 'set_reference_build',
69 'pattern': '.', 72 'pattern': '.',
70 'action': ['python', 73 'action': ['python',
71 'src/dart/tools/bots/set_reference_build_revision.py', 74 'src/dart/tools/bots/set_reference_build_revision.py',
72 Var('chromium_base_revision')], 75 Var('chromium_base_revision')],
73 }) 76 })
OLDNEW
« no previous file with comments | « dart/tools/bots/get_chromium_build.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698