Files
android_external_json-c/Android.bp
Aaron Kling 4ca1c6405c libjson: Convert makefile to blueprint
To make it available as a dependency to blueprint targets

Change-Id: Ic11457bb90be9f80c0deff7887b64d69579ce690
2023-08-29 13:13:52 -05:00

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",
],
}