BUILD.gn 738 字节
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 14 15 16 17
  if (is_fuchsia) {
    # TODO(abarth) Remove this specific list once Fuchsia can build everything.
    deps = [
      "//flutter/snapshotter",
      "//flutter/assets",
      "//flutter/flow",
      "//flutter/glue",
    ]
  } else {
    deps = [
18 19 20 21
      "//flutter/sky",
    ]
  }

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

30 31 32 33 34 35 36 37 38
if (!is_fuchsia) {

  group("dist") {
    testonly = true

    deps = [
      "//flutter/sky/dist",
    ]
  }
39 40

}