BUILD.gn 1.32 KB
Newer Older
1 2 3 4 5 6
# 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.

assert(is_fuchsia)

7 8
import("//topaz/runtime/flutter_runner/flutter_app.gni")

9
flutter_app("flutter_gallery") {
10
  package_name = "flutter_gallery"
11 12
  main_dart = "lib/main.dart"

13 14
  manifest = "pubspec.yaml"

15
  disable_analysis = true
16

17 18 19 20 21 22 23
  meta = [
    {
      path = rebase_path("meta/flutter_gallery.cmx")
      dest = "flutter_gallery.cmx"
    },
  ]

24
  deps = [
25
    "../../packages/flutter",
26 27 28 29 30 31 32 33
    "//third_party/dart-pkg/pub/charcode",
    "//third_party/dart-pkg/pub/collection",
    "//third_party/dart-pkg/pub/connectivity",
    "//third_party/dart-pkg/pub/cupertino_icons",
    "//third_party/dart-pkg/pub/device_info",
    "//third_party/dart-pkg/pub/flutter_gallery_assets",
    "//third_party/dart-pkg/pub/meta",
    "//third_party/dart-pkg/pub/path",
34 35
    "//third_party/dart-pkg/pub/scoped_model",
    "//third_party/dart-pkg/pub/shrine_images",
36 37 38
    "//third_party/dart-pkg/pub/source_span",
    "//third_party/dart-pkg/pub/string_scanner",
    "//third_party/dart-pkg/pub/typed_data",
39
    "//third_party/dart-pkg/pub/url_launcher",
40 41 42
    "//third_party/dart-pkg/pub/vector_math",
    "//third_party/dart-pkg/pub/video_player",
    "//third_party/dart/third_party/pkg/intl",
43 44 45
  ]

}