1package {
2    default_applicable_licenses: ["Android-Apache-2.0"],
3}
4
5cc_fuzz {
6    name: "test_fuzzer_1",
7    srcs: [
8        "test_fuzzer_1.cpp",
9        "test_code.cpp"
10    ],
11    host_supported: true,
12    fuzz_config: {
13        description: "Test Fuzzer 1",
14        critical: false,
15        fuzz_on_haiku_device: true,
16        fuzz_on_haiku_host: true,
17        triage_assignee: "davfu@google.com",
18        use_for_presubmit: true,
19    },
20}
21cc_fuzz {
22    name: "test_fuzzer_2",
23    srcs: [
24        "test_fuzzer_2.cpp",
25        "test_code.cpp"
26    ],
27    host_supported: true,
28    fuzz_config: {
29        description: "Test Fuzzer 2",
30        critical: false,
31        fuzz_on_haiku_device: true,
32        fuzz_on_haiku_host: true,
33        triage_assignee: "davfu@google.com",
34        use_for_presubmit: true,
35    },
36}