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

Side by Side Diff: DEPS.dart

Issue 670263008: Changes the DEPS file to pull down the Dart VM source. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Updated Dart version Created 6 years, 1 month 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 | « DEPS ('k') | mojo/public/dart/README » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 import gclient_utils
2 import os
3
4 path = gclient_utils.FindGclientRoot(os.getcwd())
5 execfile(os.path.join(path, 'src', 'DEPS')) # Include proper Mojo DEPS.
6
7 # Now we need to add in Dart.
8
9 vars.update({
10 'dart_svn': 'https://dart.googlecode.com',
11 'dart_revision': '41678',
12 })
13
14 deps.update({
15 'src/dart/runtime':
16 Var('dart_svn') + '/svn/branches/bleeding_edge/dart/runtime' + '@' + Var('dar t_revision'),
17
18 'src/dart/sdk/lib':
19 Var('dart_svn') + '/svn/branches/bleeding_edge/dart/sdk/lib' + '@' + Var('dar t_revision'),
20
21 'src/dart/tools':
22 Var('dart_svn') + '/svn/branches/bleeding_edge/dart/tools' + '@' + Var('dart_ revision'),
23 })
24
25 allowed_hosts += ['dart.googlecode.com']
OLDNEW
« no previous file with comments | « DEPS ('k') | mojo/public/dart/README » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698