Update dart_style to 1.0.9 and bring in its new dependencies.

This removes the dependency on scheduled_test which is important for
rolling other packages. In return, it brings in two new packages,
test_descriptor and test_process.

There are no changes in the formatter's actual output. All of the
differences are in tests or internal dependencies, so I don't think we
need to worry about coordinating this with the PRESUBMIT version of
dartfmt as in https://github.com/dart-lang/sdk/issues/30164.

Change-Id: I1d6426303055a4400a0ca3d16965a3e05ab39cf7
Reviewed-on: https://dart-review.googlesource.com/32445
Reviewed-by: Kevin Moore <kevmoo@google.com>
Commit-Queue: Bob Nystrom <rnystrom@google.com>
This commit is contained in:
Bob Nystrom 2018-01-04 12:43:36 -08:00 committed by commit-bot@chromium.org
parent 560fb2998d
commit 8b8d9b08e1
2 changed files with 13 additions and 2 deletions

View file

@ -95,8 +95,10 @@ telemetry:pkg/telemetry/lib
term_glyph:third_party/pkg/term_glyph/lib
test:third_party/pkg/test/lib
test_dart:tools/testing/dart
testing:pkg/testing/lib
test_descriptor:third_party/pkg/test_descriptor/lib
test_process:third_party/pkg/test_process/lib
test_reflective_loader:third_party/pkg/test_reflective_loader/lib
testing:pkg/testing/lib
tuple:third_party/pkg/tuple/lib
typed_data:third_party/pkg/typed_data/lib
typed_mock:pkg/typed_mock/lib

11
DEPS
View file

@ -73,7 +73,7 @@ vars = {
# minutes later.
#
# For more details, see https://github.com/dart-lang/sdk/issues/30164
"dart_style_tag": "@1.0.7", # Please see the note above before updating.
"dart_style_tag": "@1.0.9", # Please see the note above before updating.
"dartdoc_tag" : "@v0.15.0+1",
"fixnum_tag": "@0.10.5",
@ -124,6 +124,8 @@ vars = {
"stream_channel_tag": "@1.6.2",
"string_scanner_tag": "@1.0.2",
"sunflower_rev": "@879b704933413414679396b129f5dfa96f7a0b1e",
"test_descriptor_tag": "@1.0.3",
"test_process_tag": "@1.0.1",
"term_glyph_tag": "@1.0.0",
"test_reflective_loader_tag": "@0.1.3",
"test_tag": "@0.12.24+6",
@ -318,6 +320,13 @@ deps = {
Var("dart_git") + "term_glyph.git" + Var("term_glyph_tag"),
Var("dart_root") + "/third_party/pkg/test":
Var("dart_git") + "test.git" + Var("test_tag"),
# TODO(31772): Use "dart_git" once these are mirrored.
Var("dart_root") + "/third_party/pkg/test_descriptor":
"http://github.com/dart-lang/test_descriptor.git" + Var("test_descriptor_tag"),
Var("dart_root") + "/third_party/pkg/test_process":
"http://github.com/dart-lang/test_process.git" + Var("test_process_tag"),
Var("dart_root") + "/third_party/pkg/test_reflective_loader":
Var("dart_git") + "test_reflective_loader.git" +
Var("test_reflective_loader_tag"),