BUILD.gn 713 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 16 17 18
  deps = [
    "//third_party/dart-pkg/pub/async",
    "//third_party/dart-pkg/pub/collection",
    "//third_party/dart-pkg/pub/meta",
19
    "//third_party/dart-pkg/pub/typed_data",
20
    "//third_party/dart-pkg/pub/vector_math",
21
    "//third_party/dart/third_party/pkg/intl",
22
  ]
23 24

  if (is_fuchsia) {
25
    deps += [ "//topaz/runtime/sky_engine:sky_engine_dart" ]
26
  }
27
}