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