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

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

Issue 550173007: Version 1.6.1 (Closed) Base URL: http://dart.googlecode.com/svn/branches/1.6/
Patch Set: Created 6 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 | « dart/tools/dom/src/html_native_DOMImplementation.dart ('k') | no next file » | 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 "googlecode_url": "http://%s.googlecode.com/svn", 10 "googlecode_url": "http://%s.googlecode.com/svn",
11 "webkit_revision": "180289", 11 "webkit_revision": "180289",
12 12
13 "chromium_url": "http://src.chromium.org/svn", 13 "chromium_url": "http://src.chromium.org/svn",
14 "dartium_base": "http://src.chromium.org", 14 "dartium_base": "http://src.chromium.org",
15 "dartium_chromium_branch": "/chrome/branches/dart/2062/src", 15 "dartium_chromium_branch": "/chrome/branches/dart/2062/src",
16 "dartium_chromium_revision": "289648", 16 "dartium_chromium_revision": "289648",
17 # Git hashes of archived chromium builds closest to r278856. 17 # Git hashes of archived chromium builds closest to r278856.
18 "chromium_base_revision": 18 "chromium_base_revision":
19 '{"Windows":"9332044293a666d077a214b735a31ba9f3debed7", ' + 19 '{"Windows":"9332044293a666d077a214b735a31ba9f3debed7", ' +
20 ' "Darwin": "db25a7e9bf34e638a1cbb4c8974ca566c22eb62c", ' + 20 ' "Darwin": "db25a7e9bf34e638a1cbb4c8974ca566c22eb62c", ' +
21 ' "Linux": "abe29e2ae1ad6d9bd8a7bfa23b3316a203d39ef2"}', 21 ' "Linux": "abe29e2ae1ad6d9bd8a7bfa23b3316a203d39ef2"}',
22 "dart_branch": "/branches/1.6", 22 "dart_branch": "/branches/1.6",
23 "dartium_webkit_branch": "/blink/branches/dart/2062", 23 "dartium_webkit_branch": "/blink/branches/dart/2062",
24 "dartium_webkit_revision": "180873", 24 "dartium_webkit_revision": "181056",
25 25
26 "co19_rev": "@738", 26 "co19_rev": "@738",
27 "fake_async_rev": "@38614", 27 "fake_async_rev": "@38614",
28 }) 28 })
29 29
30 def massage_deps(deps): 30 def massage_deps(deps):
31 for key, value in deps.items(): 31 for key, value in deps.items():
32 if value is None: continue 32 if value is None: continue
33 33
34 if value.startswith('/trunk'): 34 if value.startswith('/trunk'):
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 hooks.append({ 93 hooks.append({
94 # Peg the blink version number in LASTCHANGE.blink to be the upstream 94 # Peg the blink version number in LASTCHANGE.blink to be the upstream
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 })
OLDNEW
« no previous file with comments | « dart/tools/dom/src/html_native_DOMImplementation.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698