mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
24 lines
521 B
Plaintext
24 lines
521 B
Plaintext
# 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") {
|
|
output_name = "flutter_tester"
|
|
|
|
sources = [
|
|
"main_linux.cc",
|
|
]
|
|
|
|
deps = [
|
|
"//dart/runtime:libdart_jit",
|
|
"//dart/runtime/bin:embedded_dart_io",
|
|
"//flutter/common",
|
|
"//flutter/fml",
|
|
"//flutter/shell/common",
|
|
"//flutter/shell/testing",
|
|
"//lib/ftl",
|
|
"//lib/tonic",
|
|
"//third_party/skia",
|
|
]
|
|
}
|