blob: 2a67a0964ea7c71b9383d2fe63abb5d32dde0f68 [file] [log] [blame]
import("//build/go/go_library.gni")
import("//build/go/go_test.gni")
group("tests") {
testonly = true
deps = []
if (host_os == "linux") {
deps += [ ":dm_reboot_bringup_test($host_toolchain)" ]
}
}
if (is_linux) {
go_library("lib") {
testonly = true
deps = [ "//src/tests/reboot:reboottest" ]
sources = [ "dm_reboot_bringup_test.go" ]
}
host_test_data("bringup_zbi") {
sources = [ "$root_build_dir/bringup.zbi" ]
}
go_test("dm_reboot_bringup_test") {
gopackages =
[ "go.fuchsia.dev/fuchsia/src/tests/reboot/dm_reboot_bringup_test" ]
deps = [ ":lib" ]
non_go_deps = [ ":bringup_zbi" ]
}
}