1// Copyright 2024 The Android Open Source Project 2package { 3 default_applicable_licenses: ["Android-Apache-2.0"], 4} 5 6cc_fuzz { 7 name: "xmlread_memory_fuzzer", 8 shared_libs: [ 9 "libxml2", 10 ], 11 srcs: [ 12 "XmlRead_Memory_Fuzzer.cpp", 13 ], 14 fuzz_config: { 15 cc: ["hamzeh@google.com"], 16 componentid: 330367, 17 }, 18 host_supported: true, 19 corpus: ["testdata/*"], 20 dictionary: "xml_fuzzer.dict", 21} 22 23cc_fuzz { 24 name: "xmlread_fd_fuzzer", 25 shared_libs: [ 26 "libxml2", 27 ], 28 srcs: [ 29 "XmlRead_Fd_Fuzzer.cpp", 30 ], 31 fuzz_config: { 32 cc: ["hamzeh@google.com"], 33 componentid: 330367, 34 }, 35 host_supported: true, 36 corpus: ["testdata/*"], 37 dictionary: "xml_fuzzer.dict", 38} 39