blob: 34907751fa9401afcac820fd863fce6a422397eb [file] [log] [blame]
Corbin Souffrantd3c76842020-06-05 18:54:11 -07001cc_fuzz {
2 name: "libpdx_fuzz",
3 clang: true,
4 srcs: [
5 "service_dispatcher_fuzzer.cpp",
6 ],
7 cflags: [
8 "-Wall",
9 "-Wextra",
10 "-Werror",
11 ],
12 static_libs: [
13 "libpdx",
14 ],
15 shared_libs: [
16 "libutils",
17 "liblog",
18 ],
Kris Alderc5ff3d22020-06-18 20:14:00 +000019 fuzz_config: {
20 fuzz_on_haiku_host: false,
21 fuzz_on_haiku_device: false,
22 },
Corbin Souffrantd3c76842020-06-05 18:54:11 -070023}