• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1import("//build_overrides/clspv.gni")
2
3# Based on LLVM `/llvm/lib/Target/targets_string.gni`
4import("targets.gni")
5
6# A single string with all built targets, separated by spaces.
7llvm_targets_to_build_string = ""
8foreach(target, llvm_targets_to_build) {
9  if (llvm_targets_to_build_string != "") {
10    llvm_targets_to_build_string += " "
11  }
12  llvm_targets_to_build_string += target
13}
14