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

Unified Diff: all.deps/DEPS

Issue 444453006: Setup dependency to use Blink IDL parser (w/ support libs) and latest IDLs. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/deps
Patch Set: "Point to rev in trunk and not branch." Created 6 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: all.deps/DEPS
diff --git a/all.deps/DEPS b/all.deps/DEPS
index 72f20c7f7138f9cf5c8cf71b27747b9d763b2e79..f9aa44168e58bdab304e3f6a565b1c77bb7b248b 100644
--- a/all.deps/DEPS
+++ b/all.deps/DEPS
@@ -12,6 +12,16 @@ vars = {
"co19_rev": "@738",
"chromium_url": "http://src.chromium.org/svn",
"chromium_git": "http://git.chromium.org/git",
+ "dartium_base": "http://src.chromium.org",
+
+ # Dartium Blink
+ "blink_bindings": "/blink/branches/dart/dartium/Source/bindings",
+ "blink_core": "/blink/branches/dart/dartium/Source/core",
+ "blink_modules": "/blink/branches/dart/dartium/Source/modules",
+ # Chromium Python libraries for Blink IDL parser from last good roll.
+ "ply_branch": "/trunk/src/third_party/ply",
+ "jinja2_branch": "/trunk/src/third_party/jinja2",
+ "idl_parser_branch": "/trunk/src/tools/idl_parser",
# Revisions of /third_party/* dependencies.
"7zip_rev" : "@19997",
@@ -27,6 +37,7 @@ vars = {
"commons-io_rev" : "@19997",
"commons-lang_rev" : "@33092",
"d8_rev" : "@38056",
+ "dartium_webkit_revision": "@179487",
"eclipse_rev" : "@38742",
"fake_async_rev" : "@38614",
"fest_rev" : "@19997",
@@ -35,10 +46,13 @@ vars = {
"gsutil_rev" : "@33376",
"guava_rev" : "@19997",
"hamcrest_rev" : "@19997",
+ "idl_parser_rev" : "@278907",
+ "jinja2_rev": "@287548",
"json_rev" : "@19997",
"junit_rev" : "@19997",
"mockito_rev" : "@19997",
"petitparser_rev" : "@37878",
+ "ply_rev": "@278907",
"snakeyaml_rev" : "@19997",
"websocket_rev" : "@35854",
"WebCore_rev" : "@34173",
@@ -87,6 +101,20 @@ deps = {
"dart/third_party/args4j": "/third_party/args4j" + Var("args4j_rev"),
"dart/third_party/bzip2": "/third_party/bzip2" + Var("bzip2_rev"),
"dart/third_party/chrome": "/third_party/chrome" + Var("chrome_rev"),
+
+ "dart/third_party/chrome/third_party/WebKit/Source/bindings":
+ Var("dartium_base") + Var("blink_bindings") + Var("dartium_webkit_revision"),
+ "dart/third_party/chrome/third_party/WebKit/Source/core":
+ Var("dartium_base") + Var("blink_core") + Var("dartium_webkit_revision"),
+ "dart/third_party/chrome/third_party/WebKit/Source/modules":
+ Var("dartium_base") + Var("blink_modules") + Var("dartium_webkit_revision"),
vsm 2014/08/06 11:16:56 How much bigger / slower does this make a regular
terry 2014/08/06 15:16:26 I realize there is a lot of unused stuff but it se
+ "dart/third_party/chrome/third_party/jinja2":
+ Var("chromium_url") + Var("jinja2_branch") + Var("jinja2_rev"),
+ "dart/third_party/chrome/third_party/ply":
+ Var("chromium_url") + Var("ply_branch") + Var("ply_rev"),
+ "dart/third_party/chrome/src/tools/idl_parser":
+ Var("chromium_url") + Var("idl_parser_branch") + Var("idl_parser_rev"),
+
"dart/third_party/commons-io":
"/third_party/commons-io" + Var("commons-io_rev"),
"dart/third_party/commons-lang":
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698