Files

14 lines
376 B
Plaintext

group("boot") {
if (target_arch == "x86") {
deps = [ "x86:bootx86" ]
} else if (target_arch == "x86_64") {
deps = [ "x86_64:bootx86_64" ]
} else if (target_arch == "arm32") {
deps = [ "arm32:bootarm" ]
} else if (target_arch == "arm64") {
deps = [ "arm64:bootarm64" ]
} else if (target_arch == "riscv64") {
deps = [ "riscv64:bootriscv64" ]
}
}