Meta: Allow disabling LibWeb fuzzers

The LibWeb fuzzer build is really slow, so for local builds it is useful
to disable it when you're not interested in running that fuzzer.

Co-authored-by: Andrew Kaster <akaster@serenityos.org>
This commit is contained in:
kleines Filmröllchen 2023-02-25 00:48:48 +01:00 committed by Linus Groh
parent 7c1455c357
commit 5ec5c68ed4
Notes: sideshowbarker 2024-07-16 23:45:54 +09:00

View file

@ -20,7 +20,9 @@ endfunction()
add_simple_fuzzer(FuzzBMPLoader LibGfx)
add_simple_fuzzer(FuzzBrotli LibCompress)
add_simple_fuzzer(FuzzCSSParser LibWeb)
if (ENABLE_LAGOM_LIBWEB)
add_simple_fuzzer(FuzzCSSParser LibWeb)
endif()
add_simple_fuzzer(FuzzCyrillicDecoder LibTextCodec)
add_simple_fuzzer(FuzzDeflateCompression LibCompress)
add_simple_fuzzer(FuzzDeflateDecompression LibCompress)