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 "system_bt_license" 5 // to get the below license kinds: 6 // SPDX-license-identifier-Apache-2.0 7 default_applicable_licenses: ["system_bt_license"], 8} 9 10cc_defaults { 11 name: "libbt-stack_fuzz_codec_defaults", 12 defaults: ["libbt-stack_fuzz_defaults"], 13 include_dirs: [ 14 "packages/modules/Bluetooth/system/bta/include/", // For tBT_A2DP_OFFLOAD 15 "packages/modules/Bluetooth/system/bta/sys/", // For tBT_A2DP_OFFLOAD 16 "packages/modules/Bluetooth/system/gd", 17 ], 18} 19 20cc_fuzz { 21 name: "a2dp_codec_fuzz", 22 static_libs: ["libchrome"], 23 defaults: ["libbt-stack_fuzz_codec_defaults"], 24 srcs: [ 25 "fuzz_a2dp_codec.cc", 26 ], 27} 28 29cc_fuzz { 30 name: "a2dp_codec_info_fuzz", 31 static_libs: ["libchrome"], 32 defaults: ["libbt-stack_fuzz_codec_defaults"], 33 srcs: [ 34 "fuzz_a2dp_codec_info.cc", 35 ], 36} 37 38cc_fuzz { 39 name: "a2dp_codec_cfg_fuzz", 40 static_libs: ["libchrome"], 41 defaults: ["libbt-stack_fuzz_codec_defaults"], 42 srcs: [ 43 "fuzz_a2dp_codec_config.cc", 44 ], 45} 46