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

Side by Side Diff: DEPS

Issue 365863002: Rolling 1.5 chrome and blink forward. (Closed) Base URL: http://dart.googlecode.com/svn/branches/1.5/deps/dartium.deps/
Patch Set: Created 6 years, 5 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 | DEPS.chromium » ('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 "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": "277752", 13 "dartium_chromium_revision": "280598",
14 "chromium_base_revision": "269467", 14 "chromium_base_revision": "269467",
15 "dart_branch": "/branches/1.5", 15 "dart_branch": "/branches/1.5",
16 "dartium_webkit_branch": "/blink/branches/dart/1985_stable", 16 "dartium_webkit_branch": "/blink/branches/dart/1985_stable",
17 "dartium_webkit_revision": "176392", 17 "dartium_webkit_revision": "177364",
18 18
19 "co19_rev": "@722", 19 "co19_rev": "@722",
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'):
27 deps[key] = Var("chromium_url") + value 27 deps[key] = Var("chromium_url") + value
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 hooks.append({ 79 hooks.append({
80 # Peg the blink version number in LASTCHANGE.blink to be the upstream 80 # Peg the blink version number in LASTCHANGE.blink to be the upstream
81 # webkit_revision number so that chrome remote devtools pulls assets from 81 # webkit_revision number so that chrome remote devtools pulls assets from
82 # the right place. 82 # the right place.
83 "name": "lastchange", 83 "name": "lastchange",
84 "pattern": ".", 84 "pattern": ".",
85 "action": ["python", "-c", 85 "action": ["python", "-c",
86 "f=open('src/build/util/LASTCHANGE.blink','w'); f.write('LASTCHANGE=" + 86 "f=open('src/build/util/LASTCHANGE.blink','w'); f.write('LASTCHANGE=" +
87 Var('webkit_revision') + "\\n')" ], 87 Var('webkit_revision') + "\\n')" ],
88 }) 88 })
OLDNEW
« no previous file with comments | « no previous file | DEPS.chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698