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

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

Issue 53453003: co19-roll to r651 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: rebased Created 7 years, 1 month 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 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, 'dartium.deps', 'DEPS.chromium')) # Include proper C hromium DEPS. 5 execfile(os.path.join(path, 'dartium.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 "chromium_revision": "224845", 11 "chromium_revision": "224845",
12 # The Dart repository URL is pulled out here so that it can be easily 12 # The Dart repository URL is pulled out here so that it can be easily
13 # updated to "https" for committers. 13 # updated to "https" for committers.
14 "dart_branch": "/branches/bleeding_edge", 14 "dart_branch": "/branches/bleeding_edge",
15 "multivm_url": "http://src.chromium.org/multivm/trunk", 15 "multivm_url": "http://src.chromium.org/multivm/trunk",
16 "dartium_webkit_trunk": "http://src.chromium.org/multivm/trunk/webkit", 16 "dartium_webkit_trunk": "http://src.chromium.org/multivm/trunk/webkit",
17 "dartium_webkit_revision": "1509", 17 "dartium_webkit_revision": "1509",
18 "dartium_tools_revision": "1508", 18 "dartium_tools_revision": "1508",
19 "bootstrap_css_rev" : "@28387", 19 "bootstrap_css_rev" : "@28387",
20 20
21 "co19_rev": "@641", 21 "co19_rev": "@651",
22 }) 22 })
23 23
24 def massage_deps(deps): 24 def massage_deps(deps):
25 for key, value in deps.items(): 25 for key, value in deps.items():
26 if value is None: continue 26 if value is None: continue
27 27
28 if value.startswith('/trunk'): 28 if value.startswith('/trunk'):
29 deps[key] = Var("chromium_url") + value 29 deps[key] = Var("chromium_url") + value
30 continue 30 continue
31 31
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 }) 65 })
66 66
67 hooks[0:0] = [{ 67 hooks[0:0] = [{
68 "pattern": ".", 68 "pattern": ".",
69 "action": ["python", "src/dartium_tools/export_overrides.py"], 69 "action": ["python", "src/dartium_tools/export_overrides.py"],
70 }, 70 },
71 { 71 {
72 "pattern": "dart", 72 "pattern": "dart",
73 "action": ["python", "src/dartium_tools/generate_dart_vm_version.py"], 73 "action": ["python", "src/dartium_tools/generate_dart_vm_version.py"],
74 }] 74 }]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698