mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-23 16:40:03 +00:00
11 lines
242 B
Text
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" ]
|
|
}
|
|
}
|