diff --git a/examples/flutter_gallery/BUILD.gn b/examples/flutter_gallery/BUILD.gn index 20b4fc83929..fdece782249 100644 --- a/examples/flutter_gallery/BUILD.gn +++ b/examples/flutter_gallery/BUILD.gn @@ -12,7 +12,7 @@ flutter_app("flutter_gallery") { disable_analysis = true deps = [ - "//lib/flutter/packages/flutter", + "../../packages/flutter", "//third_party/dart-pkg/pub/url_launcher", ] diff --git a/packages/flutter/BUILD.gn b/packages/flutter/BUILD.gn index 1e94aa83e80..c0d23aa38ef 100644 --- a/packages/flutter/BUILD.gn +++ b/packages/flutter/BUILD.gn @@ -10,11 +10,11 @@ dart_package("flutter") { disable_analysis = true deps = [ + "//third_party/dart/third_party/pkg/intl", "//third_party/dart-pkg/pub/async", "//third_party/dart-pkg/pub/collection", "//third_party/dart-pkg/pub/http", "//third_party/dart-pkg/pub/http_parser", - "//third_party/dart-pkg/pub/intl", "//third_party/dart-pkg/pub/meta", "//third_party/dart-pkg/pub/vector_math", ] diff --git a/packages/flutter_test/BUILD.gn b/packages/flutter_test/BUILD.gn index ebba5794b8d..3def0d50254 100644 --- a/packages/flutter_test/BUILD.gn +++ b/packages/flutter_test/BUILD.gn @@ -10,7 +10,7 @@ dart_package("flutter_test") { disable_analysis = true deps = [ - "//lib/flutter/packages/flutter", + "../flutter", "//third_party/dart-pkg/pub/quiver", "//third_party/dart-pkg/pub/test", ]