1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 15:07:44 +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:
Andrew Kaster 2023-05-05 12:57:01 -06:00 committed by Andrew Kaster
parent 13a5606cdc
commit 7b3d0fb002
15 changed files with 427 additions and 0 deletions

View file

@ -0,0 +1,19 @@
shared_library("LibCompress") {
output_name = "compress"
include_dirs = [ "//Userland/Libraries" ]
sources = [
"Brotli.cpp",
"BrotliDictionary.cpp",
"Deflate.cpp",
"Gzip.cpp",
"Lzma.cpp",
"Lzma2.cpp",
"Xz.cpp",
"Zlib.cpp",
]
deps = [
"//AK",
"//Userland/Libraries/LibCore",
"//Userland/Libraries/LibCrypto",
]
}