xref: /aosp_15_r20/external/angle/third_party/clspv/gn/llvm/target/targets_with_exegesis.gni (revision 8975f5c5ed3d1c378011245431ada316dfb6f244)
1import("//build_overrides/clspv.gni")
2
3# Based on LLVM `/llvm/lib/Target/targets_with_exegesis.gni`
4import("targets.gni")
5targets_with_exegesis = []
6foreach(target, llvm_targets_to_build) {
7  if (target == "AArch64" || target == "Mips" || target == "PowerPC" ||
8      target == "X86") {
9    targets_with_exegesis += [ target ]
10  }
11}
12