1// See: http://go/android-license-faq
2package {
3    default_applicable_licenses: ["wlan_wcn6740_cld80211_license"],
4}
5
6license {
7    name: "wlan_wcn6740_cld80211_license",
8    visibility: [":__subpackages__"],
9    license_kinds: [
10        "SPDX-license-identifier-BSD",
11    ],
12}
13
14cc_library_headers {
15    name: "libcld80211_headers",
16    vendor: true,
17    export_include_dirs: ["."],
18}
19
20cc_library_shared {
21    name: "libcld80211",
22    vendor: true,
23    header_libs: ["libcld80211_headers"],
24    shared_libs: [
25        "libcutils",
26        "libnl",
27        "liblog",
28    ],
29    srcs: ["cld80211_lib.c"],
30    cflags: [
31        "-Wall",
32        "-Werror",
33        "-Wno-unused-parameter",
34    ],
35}
36