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

Side by Side Diff: DEPS.dart

Issue 850963003: Dart: Updates Dart VM revision. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 11 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
« no previous file with comments | « no previous file | mojo/dart/embedder/BUILD.gn » ('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, 'src', 'DEPS')) # Include proper Mojo DEPS. 5 execfile(os.path.join(path, 'src', 'DEPS')) # Include proper Mojo DEPS.
6 6
7 # Now we need to add in Dart. 7 # Now we need to add in Dart.
8 8
9 vars.update({ 9 vars.update({
10 'dart_svn': 'https://dart.googlecode.com', 10 'dart_svn': 'https://dart.googlecode.com',
11 'dart_revision': '41678', 11 'dart_revision': '42887',
12 }) 12 })
13 13
14 deps.update({ 14 deps.update({
15 'src/dart/runtime': 15 'src/dart/runtime':
16 Var('dart_svn') + '/svn/branches/bleeding_edge/dart/runtime' + '@' + Var('dar t_revision'), 16 Var('dart_svn') + '/svn/branches/bleeding_edge/dart/runtime' + '@' + Var('dar t_revision'),
17 17
18 'src/dart/sdk/lib': 18 'src/dart/sdk/lib':
19 Var('dart_svn') + '/svn/branches/bleeding_edge/dart/sdk/lib' + '@' + Var('dar t_revision'), 19 Var('dart_svn') + '/svn/branches/bleeding_edge/dart/sdk/lib' + '@' + Var('dar t_revision'),
20 20
21 'src/dart/tools': 21 'src/dart/tools':
22 Var('dart_svn') + '/svn/branches/bleeding_edge/dart/tools' + '@' + Var('dart_ revision'), 22 Var('dart_svn') + '/svn/branches/bleeding_edge/dart/tools' + '@' + Var('dart_ revision'),
23 }) 23 })
24 24
25 allowed_hosts += ['dart.googlecode.com'] 25 allowed_hosts += ['dart.googlecode.com']
OLDNEW
« no previous file with comments | « no previous file | mojo/dart/embedder/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698