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

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

Issue 553823002: Revert change r37732. Remove copies of scripts from old location. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 6 years, 3 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 | « deps/dartium.deps/DEPS ('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_commit": "4423aeda2e5bcfef62cea3b08be9175f81bf5499", 12 "multivm_chromium_commit": "4423aeda2e5bcfef62cea3b08be9175f81bf5499",
13 "multivm_chromium_position": "293090", 13 "multivm_chromium_position": "293090",
14 "chromium_base_position": 14 "chromium_base_position": "293090",
15 '{"Windows": "293090", ' +
16 ' "Darwin": "293090", ' +
17 ' "Linux": "293090"}',
18 "dart_tools_branch": "/branches/bleeding_edge/dart/tools", 15 "dart_tools_branch": "/branches/bleeding_edge/dart/tools",
19 "dart_tools_revision": "39741", 16 "dart_tools_revision": "39741",
20 "multivm_blink_branch": "/blink/branches/dart/multivm", 17 "multivm_blink_branch": "/blink/branches/dart/multivm",
21 "multivm_blink_revision": "181476", 18 "multivm_blink_revision": "181476",
22 }) 19 })
23 20
24 def massage_deps(deps): 21 def massage_deps(deps):
25 for key, value in deps.items(): 22 for key, value in deps.items():
26 if value is None: continue 23 if value is None: continue
27 24
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 67
71 hooks.append({ 68 hooks.append({
72 # Set the revision for a lazily downloaded reference build of chromium, 69 # Set the revision for a lazily downloaded reference build of chromium,
73 # with which to run perf tests. 70 # with which to run perf tests.
74 'name': 'set_reference_build', 71 'name': 'set_reference_build',
75 'pattern': '.', 72 'pattern': '.',
76 'action': ['python', 73 'action': ['python',
77 'src/dart/tools/bots/set_reference_build_revision.py', 74 'src/dart/tools/bots/set_reference_build_revision.py',
78 Var('chromium_base_position')], 75 Var('chromium_base_position')],
79 }) 76 })
OLDNEW
« no previous file with comments | « deps/dartium.deps/DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698