fuzzers|cmake: Stop linking xml_lpm_fuzzer against Abseil, explicitly

This reverts commit d7e41e2de8
but also also adjusts CI.
This commit is contained in:
Sebastian Pipping 2025-02-06 23:03:49 +01:00
parent 079fc26a06
commit 3e82dcb383
2 changed files with 0 additions and 3 deletions

View file

@ -63,7 +63,6 @@ jobs:
run: |-
set -x
sudo apt-get install --yes --no-install-recommends -V \
libabsl-dev \
liblzma-dev \
libprotobuf-dev \
protobuf-compiler

View file

@ -761,7 +761,6 @@ if(EXPAT_BUILD_FUZZERS)
endforeach()
endforeach()
find_package(absl REQUIRED)
find_package(Protobuf REQUIRED)
# Only include libprotobuf-mutator here so we don't build it in non-fuzz
@ -804,7 +803,6 @@ if(EXPAT_BUILD_FUZZERS)
target_include_directories(xml_lpm_fuzzer PUBLIC ${ProtobufMutator_INCLUDE_DIR})
target_link_libraries(xml_lpm_fuzzer
fuzzpat
${absl_LIBRARIES}
${Protobuf_LIBRARIES}
${ProtobufMutator_LIBRARIES})
add_dependencies(xml_lpm_fuzzer ${ProtobufMutator_PREFIX})