To make it available as a dependency to blueprint targets Change-Id: Ic11457bb90be9f80c0deff7887b64d69579ce690
26 lines
499 B
Plaintext
26 lines
499 B
Plaintext
cc_library_shared {
|
|
|
|
name: "libjson",
|
|
vendor: true,
|
|
|
|
shared_libs: ["libcutils", "libutils"],
|
|
cflags: [
|
|
"-Werror",
|
|
"-Wno-unused-parameter",
|
|
],
|
|
export_include_dirs: ["."],
|
|
srcs: [
|
|
"arraylist.c",
|
|
"debug.c",
|
|
"json_c_version.c",
|
|
"json_object.c",
|
|
"json_object_iterator.c",
|
|
"json_tokener.c",
|
|
"json_util.c",
|
|
"libjson.c",
|
|
"linkhash.c",
|
|
"printbuf.c",
|
|
"random_seed.c",
|
|
],
|
|
}
|