blob: a3a9c1715e9fc5ccde18187ad6db6ee875b166bc [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/drivers.gni")
import("//build/rust/rustc_test.gni")
group("tests") {
testonly = true
deps = [
":compat-runtime-test",
":compat-runtime-v1-bind_test",
]
}
group("drivers") {
testonly = true
deps = [
":root",
":v1",
]
}
fidl("fuchsia.compat.runtime.test") {
testonly = true
sources = [ "compat.runtime.test.fidl" ]
contains_drivers = true
}
driver_bind_rules("root-bind") {
disable_autobind = true
bind_output = "root.bindbc"
}
fuchsia_driver("root-driver") {
testonly = true
output_name = "compat-runtime-root"
sources = [ "root-driver.cc" ]
deps = [
":fuchsia.compat.runtime.test_cpp",
":root-bind",
"//sdk/lib/driver/compat/cpp",
"//sdk/lib/driver/compat/cpp:symbols",
"//sdk/lib/driver/component/cpp:cpp",
"//src/devices/bind/fuchsia.test:fuchsia.test_cpp",
"//src/devices/lib/driver:driver_runtime",
"//src/lib/ddk",
"//zircon/system/ulib/async:async-cpp",
]
}
fuchsia_driver_component("root") {
testonly = true
manifest = "meta/root.cml"
deps = [ ":root-driver" ]
info = "root-info.json"
}
driver_bind_rules("compat-runtime-v1-bind") {
rules = "v1.bind"
bind_output = "v1.bindbc"
tests = "v1.bind-tests.json"
deps = [ "//src/devices/bind/fuchsia.test" ]
}
fuchsia_driver("v1-driver") {
testonly = true
output_name = "compat-runtime-v1"
sources = [ "v1-driver.cc" ]
deps = [
":compat-runtime-v1-bind",
":fuchsia.compat.runtime.test_cpp",
":fuchsia.compat.runtime.test_cpp",
"//sdk/lib/driver/component/cpp:cpp",
"//src/devices/bind/fuchsia.test:fuchsia.test_cpp",
"//src/devices/lib/driver",
"//src/devices/lib/driver:driver_runtime",
"//src/lib/ddk",
"//src/lib/ddktl",
"//zircon/system/ulib/fbl",
"//zircon/system/ulib/inspect",
"//zircon/system/ulib/zx",
]
}
fuchsia_driver_component("v1") {
testonly = true
manifest = "meta/leaf.cml"
deps = [
":v1-driver",
"//src/devices/misc/drivers/compat:driver",
]
info = "v1-info.json"
}
rustc_test("bin") {
edition = "2021"
testonly = true
output_name = "compat-runtime-bin"
source_root = "test.rs"
sources = [ "test.rs" ]
deps = [
":fuchsia.compat.runtime.test_rust",
"//sdk/fidl/fuchsia.driver.test:fuchsia.driver.test_rust",
"//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",
"//third_party/rust_crates:anyhow",
]
}
fuchsia_unittest_package("compat-runtime-test") {
test_specs = {
log_settings = {
max_severity = "ERROR"
}
}
deps = [
":bin",
":root",
":v1",
"//sdk/lib/driver_test_realm:driver_test_realm_component",
"//src/devices/bin/driver_host:component",
]
}