reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
import("//llvm/utils/gn/build/toolchain/target_flags.gni")

declare_args() {
  # Specifies the serial number of the Android device to be used for testing.
  android_serial_for_testing = ""
}

target_flags_string = ""

foreach(flag, target_flags + target_ldflags + [ "-fuse-ld=lld" ]) {
  if (target_flags_string != "") {
    target_flags_string += " "
  }
  target_flags_string += flag
}