mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-01 20:17:13 +02:00
14 lines
261 B
Plaintext
14 lines
261 B
Plaintext
import("//Meta/gn/build/libs/pulse/enable.gni")
|
|
|
|
config("pulseaudio_config") {
|
|
visibility = [ ":pulse" ]
|
|
libs = [ "pulse" ]
|
|
defines = [ "HAVE_PULSEAUDIO" ]
|
|
}
|
|
|
|
group("pulse") {
|
|
if (enable_pulseaudio) {
|
|
public_configs = [ ":pulseaudio_config" ]
|
|
}
|
|
}
|