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

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

Issue 64033002: Version 0.8.10.8 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: 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
« no previous file with comments | « dart/tools/dom/templates/html/impl/impl_Node.darttemplate ('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, '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 "dartium_chromium_url": "http://src.chromium.org/multivm/branches/1650/chrome" , 11 "dartium_chromium_url": "http://src.chromium.org/multivm/branches/1650/chrome" ,
12 "dartium_chromium_revision": "1587", 12 "dartium_chromium_revision": "1587",
13 # The Dart repository URL is pulled out here so that it can be easily 13 # The Dart repository URL is pulled out here so that it can be easily
14 # updated to "https" for committers. 14 # updated to "https" for committers.
15 "dart_branch": "/trunk", 15 "dart_branch": "/trunk",
16 "dartium_webkit_trunk": "http://src.chromium.org/multivm/branches/1650/blink", 16 "dartium_webkit_trunk": "http://src.chromium.org/multivm/branches/1650/blink",
17 "dartium_webkit_revision": "1585", 17 "dartium_webkit_revision": "1589",
18 "bootstrap_css_rev" : "@28387", 18 "bootstrap_css_rev" : "@28387",
19 19
20 "co19_rev": "@651", 20 "co19_rev": "@651",
21 }) 21 })
22 22
23 def massage_deps(deps): 23 def massage_deps(deps):
24 for key, value in deps.items(): 24 for key, value in deps.items():
25 if value is None: continue 25 if value is None: continue
26 26
27 if value.startswith('/trunk'): 27 if value.startswith('/trunk'):
(...skipping 29 matching lines...) Expand all
57 "/third_party/bootstrap_css" + Var("bootstrap_css_rev"), 57 "/third_party/bootstrap_css" + Var("bootstrap_css_rev"),
58 58
59 "src/dart/runtime/bin/vmservice/client/out/web/bootstrap_css": 59 "src/dart/runtime/bin/vmservice/client/out/web/bootstrap_css":
60 "/third_party/bootstrap_css" + Var("bootstrap_css_rev"), 60 "/third_party/bootstrap_css" + Var("bootstrap_css_rev"),
61 }) 61 })
62 62
63 hooks[0:0] = [{ 63 hooks[0:0] = [{
64 "pattern": "dart", 64 "pattern": "dart",
65 "action": ["python", "src/dartium_tools/generate_dart_vm_version.py"], 65 "action": ["python", "src/dartium_tools/generate_dart_vm_version.py"],
66 }] 66 }]
OLDNEW
« no previous file with comments | « dart/tools/dom/templates/html/impl/impl_Node.darttemplate ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698