vndk-def: Add more vendor lib search paths

This commit adds /vendor/lib/hw and /vendor/lib/egl to the search path
for vendor processes.  The change in this CL matches with the latest
`ld.config.txt` in `system/core/rootdir/ld.config.txt.in`.

Bug: 64503245
Test: Run vndk_definition_tool.py and a false error about missing
a library disappears.

Change-Id: If2e3c03d5049c1893cabed84c78f760fa251d308
This commit is contained in:
Logan Chien
2017-09-27 15:26:21 +08:00
parent 577fa74fde
commit 2015ccce85

View File

@@ -1240,6 +1240,8 @@ class ELFLinker(object):
)
VENDOR_SEARCH_PATH = (
'/vendor/${LIB}/hw',
'/vendor/${LIB}/egl',
'/vendor/${LIB}',
'/vendor/${LIB}/vndk-sp',
'/system/${LIB}/vndk-sp',