28 lines
434 B
Text
28 lines
434 B
Text
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",
|
|
}
|