Register libnativewindow as llndk

libnativewindow was defined as llndk but has not been built as such
because the name of the lib was missing in LLndkLibraries list.

Bug: 37488074
Test: BOARD_VNDK_VERSION=current m -j libnativewindow
Change-Id: I37f03972ef37da816efc33eee12540b9980a9a38
This commit is contained in:
Jiyong Park
2017-06-21 12:03:08 +09:00
committed by Steven Moreland
parent 9875edb04f
commit 98b16c3aba

View File

@@ -193,7 +193,7 @@ func VndkLibraries() []string {
// [vendor]
// namespace.default.link.system.shared_libs
func LLndkLibraries() []string {
return []string{"libc", "libm", "libdl", "liblog", "libandroid_net", "ld-android", "libvndksupport"}
return []string{"libc", "libm", "libdl", "liblog", "libandroid_net", "ld-android", "libvndksupport", "libnativewindow"}
}
func replaceFirst(slice []string, from, to string) {