aboutsummaryrefslogtreecommitdiff
path: root/libs/cjson/Android.bp
blob: b2ad79ded06990506c5662aae05a7efacae0bdc2 (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
cc_library_static {
    name: "cjson",
    clang: true,
    srcs: [
        "cJSON.c",
    ],
    local_include_dirs: [
        "includes",
    ],
    export_include_dirs: [
        "includes",
    ],
}

cc_library_static {
    name: "cjson_ndk",
    clang: true,
    srcs: [
        "cJSON.c",
    ],
    local_include_dirs: [
        "includes",
    ],
    export_include_dirs: [
        "includes",
    ],
    sdk_version: "24",
}