From 7ea7d8d0030a783ff709a89fb53877415cfeaf0f Mon Sep 17 00:00:00 2001 From: Zachary Anderson Date: Tue, 26 Mar 2019 08:57:40 -0700 Subject: [PATCH] [fuchsia] Fix flutter_tool BUILD.gn deps (#29942) --- packages/flutter_tools/BUILD.gn | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/flutter_tools/BUILD.gn b/packages/flutter_tools/BUILD.gn index 330d8ef8c9..2df1803a31 100644 --- a/packages/flutter_tools/BUILD.gn +++ b/packages/flutter_tools/BUILD.gn @@ -14,8 +14,7 @@ dart_library("flutter_tools") { disable_analysis = true deps = [ - "//third_party/dart/pkg/analyzer", - "//third_party/dart/third_party/pkg/linter", + "//third_party/dart-pkg/pub/analyzer", "//third_party/dart-pkg/pub/archive", "//third_party/dart-pkg/pub/args", "//third_party/dart-pkg/pub/bsdiff", @@ -30,6 +29,7 @@ dart_library("flutter_tools") { # because it uses mirrors which Fuchsia's Dart VM doesn't support. "//third_party/dart-pkg/pub/json_rpc_2", "//third_party/dart-pkg/pub/json_schema", + "//third_party/dart-pkg/pub/linter", "//third_party/dart-pkg/pub/meta", "//third_party/dart-pkg/pub/multicast_dns", "//third_party/dart-pkg/pub/mustache",