BUILD.gn 532 字节
Newer Older
A
Adam Barth 已提交
1 2 3 4 5
# 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.

# This target will be built if no target is specified when invoking ninja.
6
group("flutter") {
A
Adam Barth 已提交
7
  testonly = true
8
  deps = [
9
    "//flutter/sky",
10
  ]
11 12 13

  if (is_ios) {
    deps += [
14 15
      "//flutter/services/dynamic:sdk_lib_archive",
      "//flutter/sky/shell:flutter_framework",
16 17
    ]
  }
A
Adam Barth 已提交
18
}
19 20 21 22 23

group("dist") {
  testonly = true

  deps = [
24
    "//flutter/sky/dist",
25 26
  ]
}