'What are LOCAL_HEADER_LIBRARIES in Android.mk?
While generating a new library we can specify dependencies in Android.mk .For Example there are header dependencies which can be specified in LOCAL_C_INCLUDES, then there are library dependencies like LOCAL_STATIC_LIBRARIES and LOCAL_SHARED_LIBRARIES.
But ,I could not find anything in Android documentation(mentioned below) for LOCAL_HEADER_LIBRARIES
https://source.android.com/devices/architecture/vndk/build-system
Solution 1:[1]
I asked this from my lead. He said, we include header file's Android.bp. These header files are header file for LOCAL_SHARED_LIBRARIES.
That's what I understand
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | guptashekhar54 |