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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « DEPS ('k') | mojo/public/dart/README » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: DEPS.dart
diff --git a/DEPS.dart b/DEPS.dart
new file mode 100644
index 0000000000000000000000000000000000000000..2985079ee0ddd1275b9c2826a705a1d03f57dad6
--- /dev/null
+++ b/DEPS.dart
@@ -0,0 +1,25 @@
+import gclient_utils
+import os
+
+path = gclient_utils.FindGclientRoot(os.getcwd())
+execfile(os.path.join(path, 'src', 'DEPS')) # Include proper Mojo DEPS.
+
+# Now we need to add in Dart.
+
+vars.update({
+ 'dart_svn': 'https://dart.googlecode.com',
+ 'dart_revision': '41678',
+})
+
+deps.update({
+ 'src/dart/runtime':
+ Var('dart_svn') + '/svn/branches/bleeding_edge/dart/runtime' + '@' + Var('dart_revision'),
+
+ 'src/dart/sdk/lib':
+ Var('dart_svn') + '/svn/branches/bleeding_edge/dart/sdk/lib' + '@' + Var('dart_revision'),
+
+ 'src/dart/tools':
+ Var('dart_svn') + '/svn/branches/bleeding_edge/dart/tools' + '@' + Var('dart_revision'),
+})
+
+allowed_hosts += ['dart.googlecode.com']
« 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