xref: /aosp_15_r20/tools/security/fuzzing/llm/tinyxml2_fuzzer/Android.bp (revision d9ecfb0f4d734c9ce41cde8ac4d585b094fd4222)
1cc_fuzz {
2    name: "tinyxml_parse_fuzzer",
3    srcs: [
4        "tinyxml_parse_fuzzer.cpp",
5    ],
6
7    static_libs: [
8        "libtinyxml2",
9    ],
10
11    fuzz_config: {
12        cc: [
13            "[email protected]",
14        ],
15        componentid: 330367,
16    },
17
18    corpus: ["xml_corpus/*"],
19    dictionary: "tinyxml.dict",
20}
21