Corbin Souffrant | d3c7684 | 2020-06-05 18:54:11 -0700 | [diff] [blame] | 1 | cc_fuzz { |
Corbin Souffrant | c9b03bd | 2020-07-06 23:48:46 -0700 | [diff] [blame] | 2 | name: "libpdx_service_dispatcher_fuzzer", |
Corbin Souffrant | d3c7684 | 2020-06-05 18:54:11 -0700 | [diff] [blame] | 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", |
Corbin Souffrant | c9b03bd | 2020-07-06 23:48:46 -0700 | [diff] [blame] | 18 | "libcutils" |
| 19 | ], |
| 20 | } |
| 21 | |
| 22 | cc_fuzz { |
| 23 | name: "libpdx_message_fuzzer", |
| 24 | clang: true, |
| 25 | srcs: [ |
| 26 | "message_fuzzer.cpp", |
| 27 | ], |
| 28 | cflags: [ |
| 29 | "-Wall", |
| 30 | "-Wextra", |
| 31 | "-Werror", |
| 32 | ], |
| 33 | static_libs: [ |
| 34 | "libpdx", |
| 35 | ], |
| 36 | shared_libs: [ |
| 37 | "libutils", |
| 38 | "liblog", |
| 39 | "libcutils" |
| 40 | ], |
| 41 | } |
| 42 | |
| 43 | cc_fuzz { |
| 44 | name: "libpdx_serialization_fuzzer", |
| 45 | clang: true, |
| 46 | srcs: [ |
| 47 | "serialization_fuzzer.cpp", |
| 48 | ], |
| 49 | cflags: [ |
| 50 | "-Wall", |
| 51 | "-Wextra", |
| 52 | "-Werror", |
| 53 | ], |
| 54 | static_libs: [ |
| 55 | "libpdx", |
| 56 | ], |
| 57 | shared_libs: [ |
| 58 | "libutils", |
| 59 | "liblog", |
| 60 | "libcutils" |
Corbin Souffrant | d3c7684 | 2020-06-05 18:54:11 -0700 | [diff] [blame] | 61 | ], |
Corbin Souffrant | d3c7684 | 2020-06-05 18:54:11 -0700 | [diff] [blame] | 62 | } |