From 05c21a0c8e545ececbb35acc995f453b6399b4e5 Mon Sep 17 00:00:00 2001 From: William Hesse Date: Wed, 10 Apr 2024 23:22:22 +0200 Subject: [PATCH] Add additional dependencies to const_finder's pubspec.yaml (flutter/engine#52033) The Dart commit https://dart-review.googlesource.com/c/sdk/+/361781 added dependencies upon packages meta and _fe_analyzer_shared to the kernel package. Path overrides for these need to be added to the const_finder package in flutter/engine. --- engine/src/flutter/tools/const_finder/pubspec.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/engine/src/flutter/tools/const_finder/pubspec.yaml b/engine/src/flutter/tools/const_finder/pubspec.yaml index 2bab8d144e..38c408d023 100644 --- a/engine/src/flutter/tools/const_finder/pubspec.yaml +++ b/engine/src/flutter/tools/const_finder/pubspec.yaml @@ -25,11 +25,15 @@ dev_dependencies: path: any dependency_overrides: + _fe_analyzer_shared: + path: ../../third_party/dart/pkg/_fe_analyzer_shared args: path: ../../third_party/dart/third_party/pkg/args collection: path: ../../third_party/dart/third_party/pkg/collection kernel: path: ../../third_party/dart/pkg/kernel + meta: + path: ../../third_party/dart/pkg/meta path: path: ../../third_party/dart/third_party/pkg/path