Index: DEPS |
diff --git a/DEPS b/DEPS |
index c471a1563ad35386a212012a01d7cba3661a5bb1..95348fc3b38462bf99c296675374c4ca12647ff8 100644 |
--- a/DEPS |
+++ b/DEPS |
@@ -38,9 +38,13 @@ vars = { |
'v8_branch': 'trunk', |
'v8_revision': 'bfb312d4b40507780e15bfee2e0dc32f1391c4db', # from svn revision 24925 |
# Three lines of non-changing comments so that |
+ # the commit queue can handle CLs rolling dart |
+ # and whatever else without interference from each other. |
+ 'dart_revision': '84310cb733cea6ce5650c103867a4bed3e898e19', # 1.8.0-dev.2.0 |
+ # Three lines of non-changing comments so that |
# the commit queue can handle CLs rolling ANGLE |
# and whatever else without interference from each other. |
- "angle_revision": "d2f756be4fd198d630b64dc6c3568184363e6d14", |
+ 'angle_revision': 'd2f756be4fd198d630b64dc6c3568184363e6d14', |
# Three lines of non-changing comments so that |
# the commit queue can handle CLs rolling build tools |
# and whatever else without interference from each other. |
@@ -57,10 +61,26 @@ vars = { |
# the commit queue can handle CLs rolling lss |
# and whatever else without interference from each other. |
'lss_revision': '952107fa7cea0daaabead28c0e92d579bee517eb', |
+ # Three lines of non-changing comments so that |
+ # the commit queue can handle CLs rolling net_nss |
+ # and whatever else without interference from each other. |
+ 'net_nss_revision': 'f81948e9a402db94287a43bb34a07ee0daf56cb5', |
+ # Three lines of non-changing comments so that |
+ # the commit queue can handle CLs rolling nss |
+ # and whatever else without interference from each other. |
+ 'nss_revision': '87b96db4268293187d7cf741907a6d5d1d8080e0', |
+ # Three lines of non-changing comments so that |
+ # the commit queue can handle CLs rolling sqlite |
+ # and whatever else without interference from each other. |
+ 'sqlite_revision': '38811b79f42801662adc0458a25270ab690a6b81', |
+ # Three lines of non-changing comments so that |
+ # the commit queue can handle CLs rolling zlib |
+ # and whatever else without interference from each other. |
+ 'zlib_revision': 'c3d0a6190f2f8c924a05ab6cc97b8f975bddd33f', |
} |
# Only these hosts are allowed for dependencies in this DEPS file. |
-# If you need to add a new host, contact chrome infrastracture team. |
+# If you need to add a new host, contact chrome infrastructure team. |
allowed_hosts = [ |
'chromium.googlesource.com', |
'boringssl.googlesource.com', |
@@ -71,6 +91,21 @@ deps = { |
'src/buildtools': |
Var('chromium_git') + '/chromium/buildtools.git' + '@' + Var('buildtools_revision'), |
+ 'src/dart': |
+ Var('chromium_git') + '/external/dart.git' + '@' + Var('dart_revision'), |
abarth-chromium
2014/10/30 17:16:39
//dart/dart is a bit goofy. Do we have a plan to
zra
2014/10/30 17:43:47
The stutter, and I believe the history size issue,
|
+ |
+ 'src/dart/dart/third_party/nss': |
+ Var('chromium_git') + '/chromium/deps/nss.git' + '@' + Var('nss_revision'), |
+ |
+ 'src/dart/dart/third_party/sqlite': |
+ Var('chromium_git') + '/chromium/src/third_party/sqlite.git' + '@' + Var('sqlite_revision'), |
abarth-chromium
2014/10/30 17:16:38
Why does DartVM require sqlite and nss? That does
zra
2014/10/30 17:43:47
nss, zlib, and sqlite are for the dart:io secure s
|
+ |
+ 'src/dart/dart/third_party/zlib': |
+ Var('chromium_git') + '/chromium/src/third_party/zlib.git' + '@' + Var('zlib_revision'), |
abarth-chromium
2014/10/30 17:16:38
We already have a copy of zlib in //third_party/zl
|
+ |
+ 'src/dart/dart/third_party/net_nss': |
+ Var('chromium_git') + '/chromium/src/net/third_party/nss.git' + '@' + Var('net_nss_revision'), |
abarth-chromium
2014/10/30 17:16:38
It's pretty nutty to have two copies of nss. From
|
+ |
'src/sdch/open-vcdiff': |
Var('chromium_git') + '/external/open-vcdiff.git' + '@' + '438f2a5be6d809bc21611a94cd37bfc8c28ceb33', # from svn revision 41 |