1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 03:37:35 +00:00

LibCompress: Implement Brotli decompressor

This implements the BrotliDecompressionStream, which is a Core::Stream
that can decompress another Core::Stream.
This commit is contained in:
Michiel Visser 2022-03-31 21:07:45 +02:00 committed by Andreas Kling
parent 68772463cb
commit d6a5b11f04
28 changed files with 2725 additions and 0 deletions

View file

@ -1,4 +1,5 @@
set(TEST_SOURCES
TestBrotli.cpp
TestDeflate.cpp
TestGzip.cpp
TestZlib.cpp
@ -7,3 +8,5 @@ set(TEST_SOURCES
foreach(source IN LISTS TEST_SOURCES)
serenity_test("${source}" LibCompress LIBS LibCompress)
endforeach()
install(DIRECTORY brotli-test-files DESTINATION usr/Tests/LibCompress)