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

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

Issue 23503073: Version 0.6.21.5 (Closed) Base URL: http://dart.googlecode.com/svn/branches/0.6/
Patch Set: Created 7 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/all.deps/DEPS ('k') | deps/standalone.deps/DEPS » ('j') | 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 "chromium_revision": "217147", 11 "chromium_revision": "217147",
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": "/trunk", 14 "dart_branch": "/branches/0.6",
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": "1360", 17 "dartium_webkit_revision": "1360",
18 "dartium_tools_revision": "1361", 18 "dartium_tools_revision": "1361",
19 }) 19 })
20 20
21 def massage_deps(deps): 21 def massage_deps(deps):
22 for key, value in deps.items(): 22 for key, value in deps.items():
23 if value is None: continue 23 if value is None: continue
24 24
(...skipping 24 matching lines...) Expand all
49 }) 49 })
50 50
51 hooks[0:0] = [{ 51 hooks[0:0] = [{
52 "pattern": ".", 52 "pattern": ".",
53 "action": ["python", "src/dartium_tools/export_overrides.py"], 53 "action": ["python", "src/dartium_tools/export_overrides.py"],
54 }, 54 },
55 { 55 {
56 "pattern": "dart", 56 "pattern": "dart",
57 "action": ["python", "src/dartium_tools/generate_dart_vm_version.py"], 57 "action": ["python", "src/dartium_tools/generate_dart_vm_version.py"],
58 }] 58 }]
OLDNEW
« no previous file with comments | « deps/all.deps/DEPS ('k') | deps/standalone.deps/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698