android_system_core/lmkd/libpsi/Android.bp
Tim Murray eecd7ddfcf libpsi: initial revision
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>
2019-01-30 04:47:28 +00:00

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