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: I0871ed5abde68a7f44ca9a15d55676d529fb8f42
diff --git a/lib/Android.bp b/lib/Android.bp
index 0599a7e..6f8aa72 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",