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

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

Issue 228043004: Version 1.3.0 (stable channel) (Closed) Base URL: http://dart.googlecode.com/svn/branches/1.3/
Patch Set: Created 6 years, 8 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/dartium.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, 'clank.deps', 'DEPS.chromium')) # Include proper Chr omium DEPS. 5 execfile(os.path.join(path, 'clank.deps', 'DEPS.chromium')) # Include proper Chr omium 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/1847/src", 12 "dartium_chromium_branch": "/chrome/branches/dart/1847/src",
13 "dartium_chromium_revision": "258268", 13 "dartium_chromium_revision": "258268",
14 "chromium_base_revision": "251904", 14 "chromium_base_revision": "251904",
15 "clank_url": "https://chrome-internal.googlesource.com/clank/", 15 "clank_url": "https://chrome-internal.googlesource.com/clank/",
16 # This revision number should be kept in sync with the version of clank that 16 # This revision number should be kept in sync with the version of clank that
17 # uses a similar chromium revision to that mentioned just above in 17 # uses a similar chromium revision to that mentioned just above in
18 # "chromium_revision". You can check which might be a good revision at: 18 # "chromium_revision". You can check which might be a good revision at:
19 # https://chrome-internal.googlesource.com/clank/internal/apps/+log/1750 19 # https://chrome-internal.googlesource.com/clank/internal/apps/+log/1750
20 "clank_rev": "f4748bf9792142de06e152c56cfae8805e655951", 20 "clank_rev": "f4748bf9792142de06e152c56cfae8805e655951",
21 "chrome_internal": "https://chrome-internal.googlesource.com/", 21 "chrome_internal": "https://chrome-internal.googlesource.com/",
22 # The Dart repository URL is pulled out here so that it can be easily 22 # The Dart repository URL is pulled out here so that it can be easily
23 # updated to "https" for committers. 23 # updated to "https" for committers.
24 "dart_branch": "/trunk", 24 "dart_branch": "/branches/1.3",
25 "dartium_webkit_branch": "/blink/branches/dart/1847", 25 "dartium_webkit_branch": "/blink/branches/dart/1847",
26 "dartium_webkit_revision": "169879", 26 "dartium_webkit_revision": "169879",
27 "bootstrap_css_rev" : "@28387", 27 "bootstrap_css_rev" : "@28387",
28 "co19_rev": "@672", 28 "co19_rev": "@672",
29 "gsutil_rev" : "@33376", 29 "gsutil_rev" : "@33376",
30 }) 30 })
31 31
32 def massage_deps(deps): 32 def massage_deps(deps):
33 for key, value in deps.items(): 33 for key, value in deps.items():
34 if value is None: continue 34 if value is None: continue
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 "src/dart/third_party/gsutil": 72 "src/dart/third_party/gsutil":
73 "/third_party/gsutil" + Var("gsutil_rev"), 73 "/third_party/gsutil" + Var("gsutil_rev"),
74 }) 74 })
75 75
76 hooks[0:0] = [{ 76 hooks[0:0] = [{
77 "pattern": "dart", 77 "pattern": "dart",
78 "action": ["python", "src/dartium_tools/generate_dart_vm_version.py"], 78 "action": ["python", "src/dartium_tools/generate_dart_vm_version.py"],
79 }] 79 }]
80 80
81 target_os = ['android'] 81 target_os = ['android']
OLDNEW
« no previous file with comments | « deps/all.deps/DEPS ('k') | deps/dartium.deps/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698