summaryrefslogtreecommitdiff
path: root/Android.bp
diff options
context:
space:
mode:
authorJustin Yun <justinyun@google.com>2017-07-24 15:19:45 +0900
committerJustin Yun <justinyun@google.com>2017-07-25 14:44:59 +0900
commit34003a9553ca2a953d62c789f49300b21f07b974 (patch)
treea51986901e33e98eb73d9fb466f5de52b0a0aa46 /Android.bp
parent0dbcba84e9e1f1d7453b8de6b0949e1f1179066e (diff)
downloadgatekeeper-34003a9553ca2a953d62c789f49300b21f07b974.tar.gz
Mark the module as VNDK or VNDK-SP in Android.bp
As a VNDK/VNDK-SP module, Android.bp must have 'vndk' tag as well as 'vendor_available: true'. For a VNDK module, the 'vndk' tag has 'enabled: true'. It will be installed system/lib(64)/vndk as a vendor variant. For a VNDK-SP module, the 'vndk' tag has 'support_system_process: true' as well as 'enabled: true'. It will be installed system/lib(64)/vndk-sp as a vendor variant. Bug: 63866913 Test: build and boot with BOARD_VNDK_VERSION=current Change-Id: Ide69dd0e074ae86d6f7e4b2cd6a0e45556d7d121
Diffstat (limited to 'Android.bp')
-rw-r--r--Android.bp4
1 files changed, 4 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index c739641..cb159d8 100644
--- a/Android.bp
+++ b/Android.bp
@@ -16,6 +16,10 @@
// GoogleGateKeeper implementation, e.g. one running in TrustZone.
cc_library_shared {
name: "libgatekeeper",
+ vendor_available: true,
+ vndk: {
+ enabled: true,
+ },
srcs: [
"gatekeeper_messages.cpp",
"gatekeeper.cpp",