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

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

Issue 345403005: Fixup deps files and VERSION file on 1.5 branch (Closed) Base URL: http://dart.googlecode.com/svn/branches/1.5/
Patch Set: Created 6 years, 6 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/1985/src", 12 "dartium_chromium_branch": "/chrome/branches/dart/1985/src",
13 "dartium_chromium_revision": "272160", 13 "dartium_chromium_revision": "272160",
14 "chromium_base_revision": "269467", 14 "chromium_base_revision": "269467",
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/1916 19 # https://chrome-internal.googlesource.com/clank/internal/apps/+log/1916
20 "clank_rev": "1824a75e1d4e757c992ccdcb953b94c9b82bf936", 20 "clank_rev": "1824a75e1d4e757c992ccdcb953b94c9b82bf936",
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.5",
25 "dartium_webkit_branch": "/blink/branches/dart/1985", 25 "dartium_webkit_branch": "/blink/branches/dart/1985",
26 "dartium_webkit_revision": "174962", 26 "dartium_webkit_revision": "174962",
27 "co19_rev": "@722", 27 "co19_rev": "@722",
28 "gsutil_rev" : "@33376", 28 "gsutil_rev" : "@33376",
29 }) 29 })
30 30
31 def massage_deps(deps): 31 def massage_deps(deps):
32 for key, value in deps.items(): 32 for key, value in deps.items():
33 if value is None: continue 33 if value is None: continue
34 34
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 # webkit_revision number so that chrome remote devtools pulls assets from 95 # webkit_revision number so that chrome remote devtools pulls assets from
96 # the right place. 96 # the right place.
97 "name": "lastchange", 97 "name": "lastchange",
98 "pattern": ".", 98 "pattern": ".",
99 "action": ["python", "-c", 99 "action": ["python", "-c",
100 "f=open('src/build/util/LASTCHANGE.blink','w'); f.write('LASTCHANGE=" + 100 "f=open('src/build/util/LASTCHANGE.blink','w'); f.write('LASTCHANGE=" +
101 Var('webkit_revision') + "\\n')" ], 101 Var('webkit_revision') + "\\n')" ],
102 }) 102 })
103 103
104 target_os = ['android'] 104 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