BUILD.gn 415 Bytes
Newer Older
1 2 3 4
# Copyright 2017 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

5
import("$flutter_root/build/flutter_app.gni")
6 7 8 9 10 11

assert(is_fuchsia)

flutter_app("flutter_gallery") {
  main_dart = "lib/main.dart"

12
  disable_analysis = true
13

14
  deps = [
15
    "../../packages/flutter",
16
    "//third_party/dart-pkg/pub/url_launcher",
17 18 19
  ]

}