BUILD.gn 724 Bytes
Newer Older
1 2 3 4
# Copyright 2016 The Chromium 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("//build/dart/dart_library.gni")
6

7
dart_library("flutter") {
8 9
  package_name = "flutter"

10 11
  # Can be left empty as analysis is disabled.
  sources = []
12

13
  disable_analysis = true
14

15
  deps = [
16
    "//third_party/dart/third_party/pkg/intl",
17 18 19
    "//third_party/dart-pkg/pub/async",
    "//third_party/dart-pkg/pub/collection",
    "//third_party/dart-pkg/pub/meta",
20
    "//third_party/dart-pkg/pub/typed_data",
21 22
    "//third_party/dart-pkg/pub/vector_math",
  ]
23 24

  if (is_fuchsia) {
25
    deps += [ "$flutter_root/sky/packages/sky_engine:sky_engine_dart" ]
26
  }
27
}