• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2013 The Flutter Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5import("//build/fuchsia/sdk.gni")
6
7executable("testing") {
8  testonly = true
9
10  output_name = "flutter_tester"
11
12  public_configs = [
13    "$flutter_root:config",
14    "$flutter_root:export_dynamic_symbols",
15  ]
16
17  sources = [ "tester_main.cc" ]
18
19  deps = [
20    "$flutter_root/assets",
21    "$flutter_root/common",
22    "$flutter_root/fml",
23    "$flutter_root/lib/snapshot",
24    "$flutter_root/shell/common",
25    "//third_party/dart/runtime:libdart_jit",
26    "//third_party/dart/runtime/bin:dart_io_api",
27    "//third_party/skia",
28    "//third_party/tonic",
29  ]
30
31  if (is_fuchsia && !is_fuchsia_sdk) {
32    deps += [ "//garnet/public/lib/ui/scenic:client" ]
33  }
34}
35