BUILD.gn 789 字节
Newer Older
A
Adam Barth 已提交
1 2 3 4
# Copyright 2014 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
group("flutter") {
A
Adam Barth 已提交
6
  testonly = true
7

A
Adam Barth 已提交
8 9 10 11 12 13
  if (is_fuchsia) {
    # TODO(abarth) Remove this specific list once Fuchsia can build everything.
    deps = [
      "//flutter/assets",
      "//flutter/flow",
      "//flutter/glue",
14 15 16
      "//flutter/lib/ui",
      "//flutter/snapshotter",
      "//flutter/tonic",
A
Adam Barth 已提交
17 18 19
    ]
  } else {
    deps = [
20 21 22 23
      "//flutter/sky",
    ]
  }

24 25
  if (is_ios) {
    deps += [
26 27
      "//flutter/services/dynamic:sdk_lib_archive",
      "//flutter/sky/shell:flutter_framework",
28 29
    ]
  }
A
Adam Barth 已提交
30
}
31

32 33 34 35 36 37 38 39 40
if (!is_fuchsia) {

  group("dist") {
    testonly = true

    deps = [
      "//flutter/sky/dist",
    ]
  }
41 42

}