diff options
author | Justin Yun <justinyun@google.com> | 2017-07-24 15:19:45 +0900 |
---|---|---|
committer | Justin Yun <justinyun@google.com> | 2017-07-25 14:44:58 +0900 |
commit | f8cdaf92429eaa90cdde73d87cd3986479029b15 (patch) | |
tree | 6c09f95e45e9a906b1310857f6b5284c7cacd1e7 | |
parent | 2dac1a3ddd414b17a8d95b6edaccbab64cc3800f (diff) |
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: I9cca3553d6bd006b98d86b44733381a1b4eb6489
-rw-r--r-- | libwifi_system_iface/Android.bp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libwifi_system_iface/Android.bp b/libwifi_system_iface/Android.bp index 4be0aa01c..88c3d6211 100644 --- a/libwifi_system_iface/Android.bp +++ b/libwifi_system_iface/Android.bp @@ -29,6 +29,9 @@ wifi_system_iface_cflags = [ cc_library_shared { name: "libwifi-system-iface", vendor_available: true, + vndk: { + enabled: true, + }, cflags: wifi_system_iface_cflags, local_include_dirs: ["include"], export_include_dirs: ["include"], |