aboutsummaryrefslogtreecommitdiff
path: root/Android.bp
diff options
context:
space:
mode:
authorJustin Yun <justinyun@google.com>2017-07-24 15:19:44 +0900
committerJae Shin <jaeshin@google.com>2017-09-08 01:23:58 +0000
commit5a5a1791107bc3052a269c9f404f1149c925f5ad (patch)
tree26e5801bf5b72fe65e8dd8ba5af7766f72ee58f7 /Android.bp
parentfce3db7edbd1d6e619e9fd66f1ac020d20cedd57 (diff)
downloadvixl-5a5a1791107bc3052a269c9f404f1149c925f5ad.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 Merged-In: Ic3837afd6f257d1d56d092813bab9c8b28561759 Change-Id: Ic3837afd6f257d1d56d092813bab9c8b28561759 (cherry picked from commit 4b5b3996376a15719efc54c269ae10b1a19ad95c)
Diffstat (limited to 'Android.bp')
-rw-r--r--Android.bp8
1 files changed, 8 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index ebf00aba..8be27b7c 100644
--- a/Android.bp
+++ b/Android.bp
@@ -124,6 +124,10 @@ cc_defaults {
cc_library {
name: "libvixl-arm64",
defaults: ["vixl-release", "vixl-arm64"],
+ vendor_available: true,
+ vndk: {
+ enabled: true,
+ },
}
cc_library {
@@ -134,6 +138,10 @@ cc_library {
cc_library {
name: "libvixl-arm",
defaults: ["vixl-release", "vixl-arm"],
+ vendor_available: true,
+ vndk: {
+ enabled: true,
+ },
}
cc_library {