Bob Badour | 3c53823 | 2021-02-12 21:26:48 -0800 | [diff] [blame] | 1 | package { |
| 2 | // See: http://go/android-license-faq |
| 3 | // A large-scale-change added 'default_applicable_licenses' to import |
| 4 | // all of the 'license_kinds' from "frameworks_native_license" |
| 5 | // to get the below license kinds: |
| 6 | // SPDX-license-identifier-Apache-2.0 |
| 7 | default_applicable_licenses: ["frameworks_native_license"], |
| 8 | } |
| 9 | |
Corbin Souffrant | d3c7684 | 2020-06-05 18:54:11 -0700 | [diff] [blame] | 10 | cc_fuzz { |
Corbin Souffrant | c9b03bd | 2020-07-06 23:48:46 -0700 | [diff] [blame] | 11 | name: "libpdx_service_dispatcher_fuzzer", |
Corbin Souffrant | d3c7684 | 2020-06-05 18:54:11 -0700 | [diff] [blame] | 12 | srcs: [ |
| 13 | "service_dispatcher_fuzzer.cpp", |
| 14 | ], |
| 15 | cflags: [ |
| 16 | "-Wall", |
| 17 | "-Wextra", |
| 18 | "-Werror", |
| 19 | ], |
| 20 | static_libs: [ |
| 21 | "libpdx", |
| 22 | ], |
| 23 | shared_libs: [ |
| 24 | "libutils", |
| 25 | "liblog", |
Alix | fcd5776 | 2022-04-25 20:14:50 +0000 | [diff] [blame] | 26 | "libcutils", |
Corbin Souffrant | c9b03bd | 2020-07-06 23:48:46 -0700 | [diff] [blame] | 27 | ], |
| 28 | } |
| 29 | |
| 30 | cc_fuzz { |
| 31 | name: "libpdx_message_fuzzer", |
Corbin Souffrant | c9b03bd | 2020-07-06 23:48:46 -0700 | [diff] [blame] | 32 | srcs: [ |
| 33 | "message_fuzzer.cpp", |
| 34 | ], |
| 35 | cflags: [ |
| 36 | "-Wall", |
| 37 | "-Wextra", |
| 38 | "-Werror", |
| 39 | ], |
| 40 | static_libs: [ |
| 41 | "libpdx", |
| 42 | ], |
| 43 | shared_libs: [ |
| 44 | "libutils", |
| 45 | "liblog", |
Alix | fcd5776 | 2022-04-25 20:14:50 +0000 | [diff] [blame] | 46 | "libcutils", |
Corbin Souffrant | c9b03bd | 2020-07-06 23:48:46 -0700 | [diff] [blame] | 47 | ], |
| 48 | } |
| 49 | |
| 50 | cc_fuzz { |
| 51 | name: "libpdx_serialization_fuzzer", |
Corbin Souffrant | c9b03bd | 2020-07-06 23:48:46 -0700 | [diff] [blame] | 52 | srcs: [ |
| 53 | "serialization_fuzzer.cpp", |
| 54 | ], |
| 55 | cflags: [ |
| 56 | "-Wall", |
| 57 | "-Wextra", |
| 58 | "-Werror", |
| 59 | ], |
| 60 | static_libs: [ |
| 61 | "libpdx", |
| 62 | ], |
| 63 | shared_libs: [ |
| 64 | "libutils", |
| 65 | "liblog", |
Alix | fcd5776 | 2022-04-25 20:14:50 +0000 | [diff] [blame] | 66 | "libcutils", |
Corbin Souffrant | d3c7684 | 2020-06-05 18:54:11 -0700 | [diff] [blame] | 67 | ], |
Corbin Souffrant | d3c7684 | 2020-06-05 18:54:11 -0700 | [diff] [blame] | 68 | } |