From 5ec5c68ed47350f8278e021b237d8a56ac7d685b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?kleines=20Filmr=C3=B6llchen?= Date: Sat, 25 Feb 2023 00:48:48 +0100 Subject: [PATCH] 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 --- Meta/Lagom/Fuzzers/CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Meta/Lagom/Fuzzers/CMakeLists.txt b/Meta/Lagom/Fuzzers/CMakeLists.txt index 9478721d27..2183d3504f 100644 --- a/Meta/Lagom/Fuzzers/CMakeLists.txt +++ b/Meta/Lagom/Fuzzers/CMakeLists.txt @@ -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)