blob: 15359a73e0165acbc602a4cbabbbd9d438c01ea7 [file] [log] [blame]
# Copyright 2022 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("//build/components.gni")
import("//build/rust/rustc_test.gni")
rustc_test("test_bin") {
output_name = "debug_dash_launcher_test"
edition = "2021"
deps = [
"//sdk/fidl/fuchsia.dash:fuchsia.dash_rust",
"//src/lib/fuchsia",
"//src/lib/fuchsia-component",
"//src/lib/zircon/rust:fuchsia-zircon",
]
sources = [ "src/lib.rs" ]
}
fuchsia_unittest_package("debug-dash-launcher-test") {
manifest = "meta/test.cml"
deps = [
":test_bin",
"mock_resolver",
"//src/bringup/bin/ptysvc:component",
"//src/sys/tools/debug-dash-launcher:component",
"//zircon/third_party/uapp/dash",
]
}
group("integration_test") {
testonly = true
deps = [ ":debug-dash-launcher-test" ]
}