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: "binder_rpc_fuzzer", 12 host_supported: true, 13 14 fuzz_config: { 15 cc: ["smoreland@google.com"], 16 }, 17 18 srcs: [ 19 "main.cpp", 20 ], 21 static_libs: [ 22 "libbase", 23 "libcutils", 24 "liblog", 25 "libutils", 26 ], 27 28 target: { 29 android: { 30 shared_libs: [ 31 "libbinder", 32 ], 33 }, 34 host: { 35 static_libs: [ 36 "libbinder", 37 ], 38 }, 39 }, 40} 41