• 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("//topaz/runtime/dart_runner/dart_app.gni")
6
7dart_jit_app("dart_jit_runner_test") {
8  testonly = true
9
10  main_dart = "main.dart"
11
12  source_dir = "."
13
14  meta = [
15    {
16      path = rebase_path("meta/dart_jit_runner_test.cmx")
17      dest = "dart_jit_runner_test.cmx"
18    },
19  ]
20
21  sources = []
22  deps = [
23    "//third_party/dart-pkg/pub/test",
24    "//topaz/public/dart/fuchsia_services",
25    "//topaz/runtime/dart_runner/examples/hello_app_dart/interfaces:interfaces",
26    "//zircon/public/fidl/fuchsia-io",
27  ]
28}
29
30dart_aot_app("dart_aot_runner_test") {
31  testonly = true
32
33  main_dart = "main.dart"
34
35  source_dir = "."
36
37  meta = [
38    {
39      path = rebase_path("meta/dart_aot_runner_test.cmx")
40      dest = "dart_aot_runner_test.cmx"
41    },
42  ]
43
44  sources = []
45  deps = [
46    "//third_party/dart-pkg/pub/test",
47    "//topaz/public/dart/fuchsia_services",
48    "//topaz/runtime/dart_runner/examples/hello_app_dart/interfaces:interfaces",
49    "//zircon/public/fidl/fuchsia-io",
50  ]
51}
52