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        "system/bt/bta/include/", // For tBT_A2DP_OFFLOAD
15        "system/bt/bta/sys/", // For tBT_A2DP_OFFLOAD
16    ],
17}
18
19cc_fuzz {
20    name: "a2dp_codec_fuzz",
21    defaults: ["libbt-stack_fuzz_codec_defaults"],
22    srcs: [
23        "fuzz_a2dp_codec.cc",
24    ],
25}
26
27cc_fuzz {
28    name: "a2dp_codec_info_fuzz",
29    defaults: ["libbt-stack_fuzz_codec_defaults"],
30    srcs: [
31        "fuzz_a2dp_codec_info.cc",
32    ],
33}
34
35cc_fuzz {
36    name: "a2dp_codec_cfg_fuzz",
37    defaults: ["libbt-stack_fuzz_codec_defaults"],
38    srcs: [
39        "fuzz_a2dp_codec_config.cc",
40    ],
41}
42