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}", | |
] | |
} | |
} |