summaryrefslogtreecommitdiffstats
path: root/libmemtrack
diff options
context:
space:
mode:
authorJustin Yun <justinyun@google.com>2017-08-03 15:49:19 +0900
committerJae Shin <jaeshin@google.com>2017-09-14 02:46:36 +0000
commitef59c16450209cf293ee89b2a411404fe0c24b6e (patch)
treeeab96f093ecc587c8d731d26a72cd3961ea19e2c /libmemtrack
parent28ebfe18fb846ae034e3a45421d9d28c1c5f70db (diff)
downloadcore-ef59c16450209cf293ee89b2a411404fe0c24b6e.tar.gz
core-ef59c16450209cf293ee89b2a411404fe0c24b6e.tar.bz2
core-ef59c16450209cf293ee89b2a411404fe0c24b6e.zip
Mark libmemtrack as VNDK in Android.bp
As a VNDK module, Android.bp must have 'vndk' tag as well as 'vendor_available: true'. The 'vndk' tag for VNDK module is formated as below: vndk: { enabled: true, }, VNDK modules will be installed both in system/lib(64) as normal and in system/lib(64)/vndk as a vendor variant. Bug: 63866913 Test: build and boot with BOARD_VNDK_VERSION=current Merged-In: I4b9e560ca6d4751889a7b14f205e678b68c20008 Change-Id: I4b9e560ca6d4751889a7b14f205e678b68c20008 (cherry picked from commit 7aeb5bb86cae4d13f3459cb7fc344d1a1aaf779f)
Diffstat (limited to 'libmemtrack')
-rw-r--r--libmemtrack/Android.bp4
1 files changed, 4 insertions, 0 deletions
diff --git a/libmemtrack/Android.bp b/libmemtrack/Android.bp
index 68c580a45..095563384 100644
--- a/libmemtrack/Android.bp
+++ b/libmemtrack/Android.bp
@@ -2,6 +2,10 @@
cc_library_shared {
name: "libmemtrack",
+ vendor_available: true,
+ vndk: {
+ enabled: true,
+ },
srcs: ["memtrack.cpp"],
export_include_dirs: ["include"],
local_include_dirs: ["include"],