xref: /llvm-project/llvm/utils/gn/secondary/compiler-rt/test/test.gni (revision 18952bdcd6f987620e6396261c2bb444e428e07e)
1import("//llvm/utils/gn/build/toolchain/target_flags.gni")
2
3declare_args() {
4  # Specifies the serial number of the Android device to be used for testing.
5  android_serial_for_testing = ""
6
7  # Android API level used in compiler-rt tests.
8  android_api_level = 29
9}
10
11target_flags_string = ""
12
13foreach(flag, target_flags + target_cflags + target_ldflags) {
14  if (target_flags_string != "") {
15    target_flags_string += " "
16  }
17  target_flags_string += flag
18}
19