blob: a817b245c8785726618715d2b9f8b92d804d1e92 [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/bind/bind.gni")
import("//build/components.gni")
import("//build/rust/rustc_test.gni")
import("//build/test.gni")
group("tests") {
testonly = true
deps = [ ":package" ]
}
group("drivers") {
testonly = true
deps = [
"leaf:component",
"root:component",
]
}
fidl("fuchsia.hardware.compat") {
sources = [ "compat.test.fidl" ]
public_deps = [ "//zircon/vdso/zx" ]
}
rustc_test("compat-shim-globals-test") {
edition = "2021"
testonly = true
source_root = "test.rs"
sources = [ "test.rs" ]
deps = [
":fuchsia.hardware.compat-rustc",
"//examples/drivers/driver_test_realm/sample-driver:fuchsia.hardware.sample-rustc",
"//sdk/fidl/fuchsia.device.test:fuchsia.device.test-rustc",
"//sdk/fidl/fuchsia.driver.test:fuchsia.driver.test-rustc",
"//sdk/lib/device-watcher/rust",
"//sdk/lib/driver_test_realm/realm_builder/rust",
"//src/lib/fidl/rust/fidl",
"//src/lib/fuchsia-async",
"//src/lib/fuchsia-component-test",
"//src/lib/zircon/rust:fuchsia-zircon",
"//third_party/rust_crates:anyhow",
]
}
fuchsia_unittest_package("package") {
package_name = "compat-driver-globals-test"
deps = [
":compat-shim-globals-test",
"leaf:component",
"root:component",
"//src/devices/misc/drivers/test-parent",
]
}