BUILD.gn 521 字节
Newer Older
1 2 3 4 5
# 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.

executable("linux") {
6
  output_name = "flutter_tester"
7 8 9 10 11 12

  sources = [
    "main_linux.cc",
  ]

  deps = [
13
    "//dart/runtime:libdart_jit",
14
    "//dart/runtime/bin:embedded_dart_io",
A
Adam Barth 已提交
15
    "//flutter/common",
16
    "//flutter/fml",
17 18 19
    "//flutter/shell/common",
    "//flutter/shell/testing",
    "//lib/ftl",
20
    "//lib/tonic",
21
    "//third_party/skia",
22 23
  ]
}