Skip to content

Commit

Permalink
Pull in latest analyzer_cli.
Browse files Browse the repository at this point in the history
The latest update to analyzer_cli makes it analyze all files using a
single context, so it can re-use analysis results; this makes it much
faster when analyzing large projects (~13x faster at analyzing pub,
for example).

On a temporary basis, this CL pulls in analyzer_cli using a git SHA
rather than a tag, since the new analyzer_cli features don't have a
release tag yet.  Once they have been validated on the buildbots, I'll
assign a release tag and update DEPS to point to it.

R=pquitslund@google.com

Review URL: https://codereview.chromium.org//1170543003
  • Loading branch information
stereotype441 committed Jun 5, 2015
1 parent 9326f9d commit 3fd32d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DEPS
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ vars = {

# Revisions of /third_party/* dependencies.
"7zip_rev" : "@19997",
"analyzer_cli_tag" : "@1.1.0",
"analyzer_cli_rev" : "@090c4859a2f88e62ae71a11583ba31e9999c74f6",
"args_tag": "@0.13.0",
"barback_rev" : "@29ee90dbcf77cfd64632fa2797a4c8a4f29a4b51",
"charcode_tag": "@1.1.0",
Expand Down Expand Up @@ -175,7 +175,7 @@ deps = {
Var("dart_services_rev"),

Var("dart_root") + "/third_party/pkg/analyzer_cli":
(Var("github_mirror") % "analyzer_cli") + Var("analyzer_cli_tag"),
(Var("github_mirror") % "analyzer_cli") + Var("analyzer_cli_rev"),
Var("dart_root") + "/third_party/pkg/args":
(Var("github_mirror") % "args") + Var("args_tag"),
Var("dart_root") + "/third_party/pkg/async_await":
Expand Down

0 comments on commit 3fd32d4

Please sign in to comment.