From b18f7eabe6180c80af124bceea342e588a3987c1 Mon Sep 17 00:00:00 2001 From: Daco Harkes Date: Tue, 4 May 2021 13:19:22 +0200 Subject: [PATCH 1/2] Add dart devtools to DEPS Adds the dart devtools to the DEPS in a way that the autoroller in https://github.com/flutter/buildroot/blob/master/tools/dart/create_updated_flutter_deps.py can pick it up. Breakage Dart SDK: https://dart-review.googlesource.com/c/sdk/+/188361 Corresponding Dart SDK fix: https://dart-review.googlesource.com/c/sdk/+/198042 --- DEPS | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/DEPS b/DEPS index 4b78227a760bb..177a86a5dcd31 100644 --- a/DEPS +++ b/DEPS @@ -43,6 +43,7 @@ vars = { 'dart_boringssl_rev': '1607f54fed72c6589d560254626909a64124f091', 'dart_clock_rev': 'a494269254ba978e7ef8f192c5f7fec3fc05b9d3', 'dart_collection_rev': '9967dcd3d7645db6de48d5abfab3018bb0c84236', + 'dart_devtools_rev': '12ad5341ae0a275042c84a4e7be9a6c98db65612', 'dart_http_throttle_tag': '1.0.2', 'dart_intl_tag': '0.17.0-nullsafety', 'dart_linter_tag': '1.4.0', @@ -150,6 +151,9 @@ deps = { # WARNING: Unused Dart dependencies in the list below till "WARNING:" marker are removed automatically - see create_updated_flutter_deps.py. + 'src/third_party/dart/third_party/devtools': + {'packages': [{'version': 'git_revision:12ad5341ae0a275042c84a4e7be9a6c98db65612', 'package': 'dart/third_party/flutter/devtools'}], 'dep_type': 'cipd'}, + 'src/third_party/dart/third_party/pkg/args': Var('dart_git') + '/args.git@d8fea36c10ef96797be02e3d132d572445cd86f4', From 37e965c5d50f8e78caf9a43f021d53b0e52cd3f7 Mon Sep 17 00:00:00 2001 From: Ben Konyi Date: Tue, 4 May 2021 09:23:33 -0700 Subject: [PATCH 2/2] Update DEPS --- DEPS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DEPS b/DEPS index 177a86a5dcd31..4b3da169cd774 100644 --- a/DEPS +++ b/DEPS @@ -152,7 +152,7 @@ deps = { # WARNING: Unused Dart dependencies in the list below till "WARNING:" marker are removed automatically - see create_updated_flutter_deps.py. 'src/third_party/dart/third_party/devtools': - {'packages': [{'version': 'git_revision:12ad5341ae0a275042c84a4e7be9a6c98db65612', 'package': 'dart/third_party/flutter/devtools'}], 'dep_type': 'cipd'}, + {'packages': [{'version': 'git_revision:' + Var('dart_devtools_rev'), 'package': 'dart/third_party/flutter/devtools'}], 'dep_type': 'cipd'}, 'src/third_party/dart/third_party/pkg/args': Var('dart_git') + '/args.git@d8fea36c10ef96797be02e3d132d572445cd86f4',