mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 14:47:34 +00:00
Meta: Add gn rules for dependencies of LibWeb
There's a lot of them, and LibWeb is a massive set of files to build as well, so let's add these first :^).
This commit is contained in:
parent
13a5606cdc
commit
7b3d0fb002
15 changed files with 427 additions and 0 deletions
29
Meta/gn/secondary/Userland/Libraries/LibAudio/BUILD.gn
Normal file
29
Meta/gn/secondary/Userland/Libraries/LibAudio/BUILD.gn
Normal file
|
@ -0,0 +1,29 @@
|
|||
# TODO: AudioClient IPC files for serenity
|
||||
|
||||
shared_library("LibAudio") {
|
||||
include_dirs = [ "//Userland/Libraries" ]
|
||||
sources = [
|
||||
"FlacLoader.cpp",
|
||||
"GenericTypes.cpp",
|
||||
"Loader.cpp",
|
||||
"MP3Loader.cpp",
|
||||
"Metadata.cpp",
|
||||
"QOALoader.cpp",
|
||||
"QOATypes.cpp",
|
||||
"RIFFTypes.cpp",
|
||||
"SampleFormats.cpp",
|
||||
"UserSampleQueue.cpp",
|
||||
"VorbisComment.cpp",
|
||||
"WavLoader.cpp",
|
||||
"WavWriter.cpp",
|
||||
]
|
||||
deps = [
|
||||
"//AK",
|
||||
"//Userland/Libraries/LibCore",
|
||||
"//Userland/Libraries/LibCrypto",
|
||||
"//Userland/Libraries/LibIPC",
|
||||
"//Userland/Libraries/LibThreading",
|
||||
"//Userland/Libraries/LibUnicode",
|
||||
]
|
||||
output_name = "audio"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue