1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-05 20:47:36 +00:00
serenity/Meta/gn/build/libs/pthread/BUILD.gn
Andrew Kaster 4bfb146181 Meta: Add the start of a gn build based on the LLVM gn build
"based on" in this context means "largely copied from"
2023-07-09 16:22:58 -06:00

11 lines
242 B
Text

config("pthread_config") {
visibility = [ ":pthread" ]
libs = [ "pthread" ]
}
group("pthread") {
# On Android, bionic has built-in support for pthreads.
if (current_os != "android") {
public_configs = [ ":pthread_config" ]
}
}