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