• Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// See: http://go/android-license-faq
2package {
3    default_applicable_licenses: ["wlan_legacy_cld80211_license"],
4}
5
6license {
7    name: "wlan_legacy_cld80211_license",
8    visibility: [":__subpackages__"],
9    license_kinds: [
10        "SPDX-license-identifier-BSD",
11    ],
12}
13
14cc_library_shared {
15    name: "libcld80211",
16    vendor: true,
17    shared_libs: [
18        "libcutils",
19        "libnl",
20        "liblog",
21    ],
22    srcs: ["cld80211_lib.c"],
23    cflags: [
24        "-Wall",
25        "-Werror",
26        "-Wno-unused-parameter",
27    ],
28    export_include_dirs: ["."],
29}
30