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

Side by Side Diff: dartium.deps/DEPS

Issue 429073003: Dartium 37 to bleeding edge (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/deps
Patch Set: Update to latest Created 6 years, 4 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 | dartium.deps/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/dartium/src",
13 "dartium_chromium_revision": "286245", 13 "dartium_chromium_revision": "284674",
14 "chromium_base_revision": "269467", 14 # Git hashes of archived chromium builds closest to r278856.
15 "chromium_base_revision":
16 '{"Windows":"9332044293a666d077a214b735a31ba9f3debed7", ' +
17 ' "Darwin": "db25a7e9bf34e638a1cbb4c8974ca566c22eb62c", ' +
18 ' "Linux": "abe29e2ae1ad6d9bd8a7bfa23b3316a203d39ef2"}',
15 "dart_branch": "/branches/bleeding_edge", 19 "dart_branch": "/branches/bleeding_edge",
16 "dartium_webkit_branch": "/blink/branches/dart/1985", 20 "dartium_webkit_branch": "/blink/branches/dart/dartium",
17 "dartium_webkit_revision": "178946", 21 "dartium_webkit_revision": "179306",
18 22
19 "co19_rev": "@738", 23 "co19_rev": "@738",
20 "fake_async_rev": "@38614", 24 "fake_async_rev": "@38614",
21 }) 25 })
22 26
23 def massage_deps(deps): 27 def massage_deps(deps):
24 for key, value in deps.items(): 28 for key, value in deps.items():
25 if value is None: continue 29 if value is None: continue
26 30
27 if value.startswith('/trunk'): 31 if value.startswith('/trunk'):
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 hooks.append({ 90 hooks.append({
87 # Peg the blink version number in LASTCHANGE.blink to be the upstream 91 # Peg the blink version number in LASTCHANGE.blink to be the upstream
88 # webkit_revision number so that chrome remote devtools pulls assets from 92 # webkit_revision number so that chrome remote devtools pulls assets from
89 # the right place. 93 # the right place.
90 "name": "lastchange", 94 "name": "lastchange",
91 "pattern": ".", 95 "pattern": ".",
92 "action": ["python", "-c", 96 "action": ["python", "-c",
93 "f=open('src/build/util/LASTCHANGE.blink','w'); f.write('LASTCHANGE=" + 97 "f=open('src/build/util/LASTCHANGE.blink','w'); f.write('LASTCHANGE=" +
94 Var('webkit_revision') + "\\n')" ], 98 Var('webkit_revision') + "\\n')" ],
95 }) 99 })
OLDNEW
« no previous file with comments | « no previous file | dartium.deps/DEPS.chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698