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

Side by Side Diff: DEPS

Issue 168283009: Roll stable dartium deps to pick up Chrome 33 regression fixes. (Closed) Base URL: http://dart.googlecode.com/svn/trunk/deps/dartium.deps/
Patch Set: Created 6 years, 10 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 | « no previous file | 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_base": "http://src.chromium.org", 11 "dartium_base": "http://src.chromium.org",
12 "dartium_chromium_branch": "/chrome/branches/dart/1750/src", 12 "dartium_chromium_branch": "/chrome/branches/dart/1750/src",
13 "dartium_chromium_revision": "251129", 13 "dartium_chromium_revision": "251129",
14 "dart_branch": "/trunk", 14 "dart_branch": "/trunk",
15 "dartium_webkit_branch": "/blink/branches/dart/1750", 15 "dartium_webkit_branch": "/blink/branches/dart/1750",
16 "dartium_webkit_revision": "167096", 16 "dartium_webkit_revision": "167422",
17 "bootstrap_css_rev" : "@28387", 17 "bootstrap_css_rev" : "@28387",
18 18
19 "co19_rev": "@672", 19 "co19_rev": "@672",
20 }) 20 })
21 21
22 def massage_deps(deps): 22 def massage_deps(deps):
23 for key, value in deps.items(): 23 for key, value in deps.items():
24 if value is None: continue 24 if value is None: continue
25 25
26 if value.startswith('/trunk'): 26 if value.startswith('/trunk'):
(...skipping 27 matching lines...) Expand all
54 "/third_party/bootstrap_css" + Var("bootstrap_css_rev"), 54 "/third_party/bootstrap_css" + Var("bootstrap_css_rev"),
55 55
56 "src/dart/runtime/bin/vmservice/client/deployed/web/bootstrap_css": 56 "src/dart/runtime/bin/vmservice/client/deployed/web/bootstrap_css":
57 "/third_party/bootstrap_css" + Var("bootstrap_css_rev"), 57 "/third_party/bootstrap_css" + Var("bootstrap_css_rev"),
58 }) 58 })
59 59
60 hooks[0:0] = [{ 60 hooks[0:0] = [{
61 "pattern": "dart", 61 "pattern": "dart",
62 "action": ["python", "src/dartium_tools/generate_dart_vm_version.py"], 62 "action": ["python", "src/dartium_tools/generate_dart_vm_version.py"],
63 }] 63 }]
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698