1package {
2    default_applicable_licenses: ["frameworks_native_license"],
3}
4
5cc_fuzz {
6    name: "gpu_service_fuzzer",
7    defaults: [
8        "libgpuservice_defaults",
9        "service_fuzzer_defaults",
10        "fuzzer_disable_leaks",
11    ],
12    static_libs: [
13        "libgpuservice",
14        "liblog",
15    ],
16    fuzz_config: {
17        cc: [
18            "paulthomson@google.com",
19            "pbaiget@google.com",
20        ],
21        triage_assignee: "waghpawan@google.com",
22    },
23    include_dirs: ["frameworks/native/services/gpuservice/"],
24    srcs: ["GpuServiceFuzzer.cpp"],
25}
26