From 89ec057e3849acd016ed67a969614aff8921fe3d Mon Sep 17 00:00:00 2001 From: "P.Y. Laligand" Date: Tue, 2 May 2017 15:30:48 -0700 Subject: [PATCH] Add missing dependency. (#3643) --- examples/hello_flutter/BUILD.gn | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/examples/hello_flutter/BUILD.gn b/examples/hello_flutter/BUILD.gn index 079febbed065b..2385019a3ea27 100644 --- a/examples/hello_flutter/BUILD.gn +++ b/examples/hello_flutter/BUILD.gn @@ -6,8 +6,16 @@ import("//flutter/build/flutter_app.gni") flutter_app("hello_flutter") { main_dart = "lib/main.dart" + + deps = [ + "//lib/flutter/packages/flutter", + ] } flutter_aot_app("hello_flutter_aot") { main_dart = "lib/main.dart" + + deps = [ + "//lib/flutter/packages/flutter", + ] }