diff options
author | Justin Yun | 2017-07-24 01:19:45 -0500 |
---|---|---|
committer | Jae Shin | 2017-09-14 03:35:16 -0500 |
commit | 6a7e8823165dbe2e60caac9a8e09a9de7f3a157e (patch) | |
tree | 6b048b89df29070c67d363eeb3a4e24f5ad1825c /libnetutils | |
parent | e997ba9d22cfaadb20f990b6840934e2b25acd89 (diff) | |
download | platform-system-core-6a7e8823165dbe2e60caac9a8e09a9de7f3a157e.tar.gz platform-system-core-6a7e8823165dbe2e60caac9a8e09a9de7f3a157e.tar.xz platform-system-core-6a7e8823165dbe2e60caac9a8e09a9de7f3a157e.zip |
Mark the modules as VNDK in Android.bp
As a VNDK module, Android.bp must have 'vndk' tag as well as
'vendor_available: true'.
The 'vndk' tag for VNDK module is formated as below:
vndk: {
enabled: true,
},
VNDK modules will be installed both in system/lib(64) as normal and
in system/lib(64)/vndk as a vendor variant.
Bug: 63866913
Test: build and boot with BOARD_VNDK_VERSION=current
Merged-In: Icecb22ed2ed0f58c3168605d4cf64815e2dda750
Change-Id: Icecb22ed2ed0f58c3168605d4cf64815e2dda750
(cherry picked from commit 9b0ed7294273d5f10020388e5a5b7e545a2fd1de)
Diffstat (limited to 'libnetutils')
-rw-r--r-- | libnetutils/Android.bp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libnetutils/Android.bp b/libnetutils/Android.bp index 9967ef886..1d43775d6 100644 --- a/libnetutils/Android.bp +++ b/libnetutils/Android.bp | |||
@@ -1,6 +1,9 @@ | |||
1 | cc_library_shared { | 1 | cc_library_shared { |
2 | name: "libnetutils", | 2 | name: "libnetutils", |
3 | vendor_available: true, | 3 | vendor_available: true, |
4 | vndk: { | ||
5 | enabled: true, | ||
6 | }, | ||
4 | 7 | ||
5 | srcs: [ | 8 | srcs: [ |
6 | "dhcpclient.c", | 9 | "dhcpclient.c", |