mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 09:00:22 +00:00
13 lines
261 B
Text
13 lines
261 B
Text
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" ]
|
|
}
|
|
}
|