blob: ac831ceda025bcae99fd3baca5fa5fd47f4bc704 [file] [log] [blame]
Bob Badour3c538232021-02-12 21:26:48 -08001package {
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 Souffrantd3c76842020-06-05 18:54:11 -070010cc_fuzz {
Corbin Souffrantc9b03bd2020-07-06 23:48:46 -070011 name: "libpdx_service_dispatcher_fuzzer",
Corbin Souffrantd3c76842020-06-05 18:54:11 -070012 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",
Alixfcd57762022-04-25 20:14:50 +000026 "libcutils",
Corbin Souffrantc9b03bd2020-07-06 23:48:46 -070027 ],
28}
29
30cc_fuzz {
31 name: "libpdx_message_fuzzer",
Corbin Souffrantc9b03bd2020-07-06 23:48:46 -070032 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",
Alixfcd57762022-04-25 20:14:50 +000046 "libcutils",
Corbin Souffrantc9b03bd2020-07-06 23:48:46 -070047 ],
48}
49
50cc_fuzz {
51 name: "libpdx_serialization_fuzzer",
Corbin Souffrantc9b03bd2020-07-06 23:48:46 -070052 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",
Alixfcd57762022-04-25 20:14:50 +000066 "libcutils",
Corbin Souffrantd3c76842020-06-05 18:54:11 -070067 ],
Corbin Souffrantd3c76842020-06-05 18:54:11 -070068}