blob: 4c818a369058e966c971271976a2b91f5abf86c0 [file] [log] [blame]
import("//build/image/hypervisor.gni")
group("host_tools") {
deps = [
":hafnium($arch_toolchain)",
]
}
executable("test") {
sources = [
"test.cpp",
]
}
# Only build the image for the arch
if (current_toolchain == arch_toolchain) {
hypervisor("hafnium") {
deps = [
"//src",
"//src/arch/${arch}",
]
}
}