blob: ab54390926cc8c509d8cc70484332bb31b0e47b0 [file] [log] [blame]
Jeongik Cha056f47e2021-07-21 15:43:49 +09001package {
2 default_applicable_licenses: ["external_libconfig_license"],
3}
4
5license {
6 name: "external_libconfig_license",
7 visibility: [":__subpackages__"],
8 license_kinds: [
9 "SPDX-license-identifier-LGPL-2.1",
10 ],
11 license_text: [
12 "LICENSE",
13 ],
14}
15
16cc_library_host_static {
17 name: "libconfig",
18 srcs: [
19 "lib/*.c"
20 ],
21 cflags: [
22 "-Wno-unused-parameter",
23 "-DHAVE_USELOCALE",
24 "-DHAVE_FREELOCALE",
25 "-DHAVE_NEWLOCALE",
26 ],
27 export_include_dirs: [
28 "lib",
29 ],
30 visibility: [
31 "//external/wmediumd",
32 ],
33}