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

Unified Diff: DEPS

Issue 2434123003: Merge more Kernel infrastructure from kernel_sdk SDK fork. (Closed)
Patch Set: Created 4 years, 2 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 | dart.gyp » ('j') | tests/kernel/kernel.status » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: DEPS
diff --git a/DEPS b/DEPS
index c3db0eb72cb002b9352a7a7dd74155879908182f..b8c23d21d24a8843f2c0d6e411a59d3854fca7b8 100644
--- a/DEPS
+++ b/DEPS
@@ -72,7 +72,8 @@ vars = {
"isolate_tag": "@0.2.3",
"jinja2_rev": "@2222b31554f03e62600cd7e383376a7c187967a1",
"json_rpc_2_tag": "@2.0.2",
- "kernel_rev": "@1906e420431656d351a9f4ee9a36b8ca9a4da1db",
+ "kernel_vm_rev": "@1c1a6464693ebdf7dd5b93d6d16df2abf8bbfe3e",
+ "kernel_dart2js_rev": "@1906e420431656d351a9f4ee9a36b8ca9a4da1db",
"linter_tag": "@0.1.28",
"logging_tag": "@0.11.3+1",
"markdown_tag": "@0.11.0",
@@ -206,6 +207,10 @@ deps = {
(Var("github_mirror") % "dart2js_info") + Var("dart2js_info_tag"),
Var("dart_root") + "/third_party/pkg/dartdoc":
(Var("github_mirror") % "dartdoc") + Var("dartdoc_tag"),
+ Var("dart_root") + "/third_party/kernel":
+ (Var("github_mirror") % "kernel") + Var("kernel_vm_rev"),
+ Var("dart_root") + "/third_party/pkg/kernel":
+ (Var("github_mirror") % "kernel") + Var("kernel_dart2js_rev"),
Var("dart_root") + "/third_party/pkg/func":
(Var("github_dartlang") % "func") + Var("func_tag"),
Var("dart_root") + "/third_party/pkg/fixnum":
@@ -232,8 +237,6 @@ deps = {
(Var("github_dartlang") % "isolate") + Var("isolate_tag"),
Var("dart_root") + "/third_party/pkg/json_rpc_2":
(Var("github_mirror") % "json_rpc_2") + Var("json_rpc_2_tag"),
- Var("dart_root") + "/third_party/pkg/kernel":
- (Var("github_mirror") % "kernel") + Var("kernel_rev"),
Var("dart_root") + "/third_party/pkg/linter":
(Var("github_mirror") % "linter") + Var("linter_tag"),
Var("dart_root") + "/third_party/pkg/logging":
@@ -571,4 +574,13 @@ hooks = [
"pattern": ".",
"action": ["python", Var("dart_root") + "/tools/generate_buildfiles.py"],
},
+ {
+ 'name': 'run_pub_get',
Bill Hesse 2016/10/21 12:17:39 This adds a lot of complexity, I think, and so we
Vyacheslav Egorov (Google) 2016/10/21 13:39:43 I killed this.
+ 'pattern': '.',
+ 'action': [
+ 'python',
+ Var('dart_root') + '/tools/run_pub_get.py',
+ Var('dart_root') + '/third_party/kernel',
+ ],
+ },
]
« no previous file with comments | « no previous file | dart.gyp » ('j') | tests/kernel/kernel.status » ('J')

Powered by Google App Engine
This is Rietveld 408576698