aboutsummaryrefslogtreecommitdiff
path: root/Android.bp
blob: ab54390926cc8c509d8cc70484332bb31b0e47b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package {
    default_applicable_licenses: ["external_libconfig_license"],
}

license {
    name: "external_libconfig_license",
    visibility: [":__subpackages__"],
    license_kinds: [
        "SPDX-license-identifier-LGPL-2.1",
    ],
    license_text: [
        "LICENSE",
    ],
}

cc_library_host_static {
    name: "libconfig",
    srcs: [
        "lib/*.c"
    ],
    cflags: [
        "-Wno-unused-parameter",
        "-DHAVE_USELOCALE",
        "-DHAVE_FREELOCALE",
        "-DHAVE_NEWLOCALE",
    ],
    export_include_dirs: [
        "lib",
    ],
    visibility: [
        "//external/wmediumd",
    ],
}