aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Yun <justinyun@google.com>2017-07-24 15:19:44 +0900
committerJustin Yun <justinyun@google.com>2017-07-25 14:44:58 +0900
commita4b125d6fc818cf8792d07759dadff311c6dd786 (patch)
tree246d77e4dbfd4bb5635ece9b8fe4c7908b863c8e
parent2a727617d02b37f9c1eb94013f87b8558c04809a (diff)
downloadlz4-a4b125d6fc818cf8792d07759dadff311c6dd786.tar.gz
Mark the module as VNDK or VNDK-SP in Android.bporeo-mr1-dev
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: I0871ed5abde68a7f44ca9a15d55676d529fb8f42
-rw-r--r--lib/Android.bp3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Android.bp b/lib/Android.bp
index 0599a7e3..6f8aa727 100644
--- a/lib/Android.bp
+++ b/lib/Android.bp
@@ -3,6 +3,9 @@
cc_library {
name: "liblz4",
vendor_available: true,
+ vndk: {
+ enabled: true,
+ },
host_supported: true,
srcs: [
"lz4.c",