Bring dart_style 1.0.9 into the repo and update its dependencies.

This removes 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: I1c81e157c32326801985615abc353f2239fe2470
Reviewed-on: https://dart-review.googlesource.com/32664
Reviewed-by: Zach Anderson <zra@google.com>
Commit-Queue: Bob Nystrom <rnystrom@google.com>
This commit is contained in:
Bob Nystrom 2018-01-05 13:32:31 -08:00 committed by commit-bot@chromium.org
parent c151dffb9f
commit 7434bf6b73
2 changed files with 10 additions and 6 deletions

View file

@ -77,7 +77,6 @@ pub_semver:third_party/pkg/pub_semver/lib
quiver:third_party/pkg/quiver/lib
quiver_hashcode:third_party/pkg/quiver_hashcode/lib
resource:third_party/pkg/resource/lib
scheduled_test:third_party/pkg/scheduled_test/lib
sdk_library_metadata:sdk/lib/_internal/sdk_library_metadata/lib
shelf:third_party/pkg/shelf/lib
shelf_packages_handler:third_party/pkg/shelf_packages_handler/lib
@ -95,8 +94,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",
@ -111,7 +111,6 @@ vars = {
"quiver_tag": "@0.27.0",
"resource_rev":"@af5a5bf65511943398146cf146e466e5f0b95cb9",
"root_certificates_rev": "@a4c7c6f23a664a37bc1b6f15a819e3f2a292791a",
"scheduled_test_tag": "@0.12.11+1",
"shelf_static_rev": "@3558aa35a0d2f0f35868c3fd64b258e140db0122",
"shelf_packages_handler_tag": "@1.0.3",
"shelf_tag": "@0.7.1",
@ -124,6 +123,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",
@ -283,8 +284,6 @@ deps = {
+ Var("quiver_tag"),
Var("dart_root") + "/third_party/pkg/resource":
Var("dart_git") + "resource.git" + Var("resource_rev"),
Var("dart_root") + "/third_party/pkg/scheduled_test":
Var("dart_git") + "scheduled_test.git" + Var("scheduled_test_tag"),
Var("dart_root") + "/third_party/pkg/shelf":
Var("dart_git") + "shelf.git" + Var("shelf_tag"),
Var("dart_root") + "/third_party/pkg/shelf_packages_handler":
@ -318,6 +317,10 @@ 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"),
Var("dart_root") + "/third_party/pkg/test_descriptor":
Var("dart_git") + "test_descriptor.git" + Var("test_descriptor_tag"),
Var("dart_root") + "/third_party/pkg/test_process":
Var("dart_git") + "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"),