From c467601098be654f77363deb19fa6166e8f496d9 Mon Sep 17 00:00:00 2001 From: Sudarshan Rajagopalan Date: Thu, 24 Sep 2020 15:42:49 -0700 Subject: [PATCH] libpsi: Export library to vendor Make vendor_available = true so that other modules in vendor image can leverage this library to init, register and unregister to psi. Bug: 169346507 Change-Id: I47f7d25984e09d61703e7b2bd6fcb8db9d3814f5 Signed-off-by: Sudarshan Rajagopalan --- libpsi/Android.bp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libpsi/Android.bp b/libpsi/Android.bp index adfc066..0d8592a 100644 --- a/libpsi/Android.bp +++ b/libpsi/Android.bp @@ -1,11 +1,13 @@ cc_library_headers { name: "libpsi_headers", export_include_dirs: ["include"], + vendor_available: true, } cc_library { name: "libpsi", srcs: ["psi.cpp"], + vendor_available: true, shared_libs: [ "liblog" ],