Steven Moreland | 46e0da7 | 2019-09-05 15:52:02 -0700 | [diff] [blame] | 1 | cc_fuzz { |
| 2 | name: "binder_parcel_fuzzer", |
Steven Moreland | 28f8142 | 2019-10-03 10:40:59 -0700 | [diff] [blame^] | 3 | defaults: ["libbinder_ndk_host_user"], |
Steven Moreland | 46e0da7 | 2019-09-05 15:52:02 -0700 | [diff] [blame] | 4 | host_supported: true, |
| 5 | srcs: [ |
| 6 | "binder.cpp", |
Steven Moreland | 28f8142 | 2019-10-03 10:40:59 -0700 | [diff] [blame^] | 7 | "binder_ndk.cpp", |
Steven Moreland | 46e0da7 | 2019-09-05 15:52:02 -0700 | [diff] [blame] | 8 | "hwbinder.cpp", |
| 9 | "main.cpp", |
| 10 | "util.cpp", |
| 11 | ], |
| 12 | static_libs: [ |
| 13 | "libbase", |
| 14 | "libbinderthreadstate", |
| 15 | "libcgrouprc", |
| 16 | "libcgrouprc_format", |
| 17 | "libcutils", |
| 18 | "libhidlbase", |
| 19 | "liblog", |
| 20 | "libprocessgroup", |
| 21 | "libjsoncpp", |
| 22 | "libutils", |
| 23 | ], |
| 24 | |
| 25 | target: { |
| 26 | android: { |
Steven Moreland | 28f8142 | 2019-10-03 10:40:59 -0700 | [diff] [blame^] | 27 | shared_libs: [ |
| 28 | "libbinder_ndk", |
| 29 | "libbinder", |
| 30 | ], |
Steven Moreland | 46e0da7 | 2019-09-05 15:52:02 -0700 | [diff] [blame] | 31 | }, |
| 32 | host: { |
Steven Moreland | 28f8142 | 2019-10-03 10:40:59 -0700 | [diff] [blame^] | 33 | static_libs: [ |
| 34 | "libbinder_ndk", |
| 35 | "libbinder", |
| 36 | ], |
Steven Moreland | 46e0da7 | 2019-09-05 15:52:02 -0700 | [diff] [blame] | 37 | }, |
| 38 | }, |
| 39 | } |