From e04472e8d5078bb0d06d152e9698045eea406d85 Mon Sep 17 00:00:00 2001 From: "P.Y. Laligand" Date: Thu, 19 Oct 2017 19:36:50 -0700 Subject: [PATCH] Update location of intl package. (#12644) Also switched to relative paths for local packages. --- examples/flutter_gallery/BUILD.gn | 2 +- packages/flutter/BUILD.gn | 2 +- packages/flutter_test/BUILD.gn | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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", ]