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 defaults: ["libbt-stack_fuzz_codec_defaults"], 23 srcs: [ 24 "fuzz_a2dp_codec.cc", 25 ], 26} 27 28cc_fuzz { 29 name: "a2dp_codec_info_fuzz", 30 defaults: ["libbt-stack_fuzz_codec_defaults"], 31 srcs: [ 32 "fuzz_a2dp_codec_info.cc", 33 ], 34} 35 36cc_fuzz { 37 name: "a2dp_codec_cfg_fuzz", 38 defaults: ["libbt-stack_fuzz_codec_defaults"], 39 srcs: [ 40 "fuzz_a2dp_codec_config.cc", 41 ], 42} 43