mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-01 12:07:14 +02:00
12 lines
242 B
Plaintext
12 lines
242 B
Plaintext
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" ]
|
|
}
|
|
}
|