1package { 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 10cc_fuzz { 11 name: "libpdx_service_dispatcher_fuzzer", 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", 26 "libcutils", 27 ], 28} 29 30cc_fuzz { 31 name: "libpdx_message_fuzzer", 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", 46 "libcutils", 47 ], 48} 49 50cc_fuzz { 51 name: "libpdx_serialization_fuzzer", 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", 66 "libcutils", 67 ], 68} 69