New library to create, register and destroy PSI monitors in a consistent way with lmkd. Test: used within lmkd Bug: 111308141 Change-Id: If243a97f178e90fe41e2de90c7b858ba82440279 Signed-off-by: Suren Baghdasaryan <surenb@google.com>
22 lines
364 B
Text
22 lines
364 B
Text
cc_library_headers {
|
|
name: "libpsi_headers",
|
|
export_include_dirs: ["include"],
|
|
}
|
|
|
|
cc_library {
|
|
name: "libpsi",
|
|
srcs: ["psi.c"],
|
|
shared_libs: [
|
|
"liblog"
|
|
],
|
|
header_libs: [
|
|
"libpsi_headers",
|
|
],
|
|
export_header_lib_headers: [
|
|
"libpsi_headers",
|
|
],
|
|
cflags: [
|
|
"-Wall",
|
|
"-Werror",
|
|
],
|
|
}
|