blob: 142d26c29dc22e58ddd22e4dde1d31ae31e13550 [file] [log] [blame]
# Copyright 2016 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//topaz/runtime/dart_runner/dart_app.gni")
dart_jit_app("dart_jit_runner_test") {
testonly = true
main_dart = "main.dart"
source_dir = "."
meta = [
{
path = rebase_path("meta/dart_jit_runner_test.cmx")
dest = "dart_jit_runner_test.cmx"
},
]
sources = []
deps = [
"//third_party/dart-pkg/pub/test",
"//topaz/public/lib/app/dart",
"//topaz/runtime/dart_runner/examples/hello_app_dart/interfaces:interfaces",
]
}
dart_aot_app("dart_aot_runner_test") {
testonly = true
main_dart = "main.dart"
source_dir = "."
meta = [
{
path = rebase_path("meta/dart_aot_runner_test.cmx")
dest = "dart_aot_runner_test.cmx"
},
]
sources = []
deps = [
"//third_party/dart-pkg/pub/test",
"//topaz/public/lib/app/dart",
"//topaz/runtime/dart_runner/examples/hello_app_dart/interfaces:interfaces",
]
}