blob: 8b03250fc9624c7b73add5b4ac980dd4ca50c0b0 [file] [log] [blame]
Andrew Sculla158e912018-07-16 11:32:13 +01001import("//build/image/hypervisor.gni")
2
Andrew Sculla5e91632018-07-30 15:21:34 +01003group("arch_images") {
Andrew Sculla158e912018-07-16 11:32:13 +01004 deps = [
5 ":hafnium($arch_toolchain)",
6 ]
7}
8
9executable("test") {
Andrew Sculla5e91632018-07-30 15:21:34 +010010 testonly = true
Andrew Sculla158e912018-07-16 11:32:13 +010011 sources = [
12 "test.cpp",
13 ]
14}
15
16# Only build the image for the arch
17if (current_toolchain == arch_toolchain) {
18 hypervisor("hafnium") {
19 deps = [
20 "//src",
21 "//src/arch/${arch}",
22 ]
23 }
24}