summaryrefslogtreecommitdiff
path: root/libnativeloader
diff options
context:
space:
mode:
authorOrion Hodson <oth@google.com>2020-04-03 06:47:07 +0100
committerOrion Hodson <oth@google.com>2020-04-07 14:01:36 +0000
commit00cb81d29a9a903aa5f72e28492415ff7b2d7f06 (patch)
tree221d2e9afa762ffeb1700d5d674c7868855495b2 /libnativeloader
parent4b79ef49dce84b8e4c08d25b73411329fc6a0d55 (diff)
Add explicit dependencies on jni_headers
Bug: 152482542 Test: lunch aosp_x86_64 && m checkbuild Change-Id: I1859a5b15d7e1a4939968908d862d27b2345acc4
Diffstat (limited to 'libnativeloader')
-rw-r--r--libnativeloader/Android.bp6
1 files changed, 5 insertions, 1 deletions
diff --git a/libnativeloader/Android.bp b/libnativeloader/Android.bp
index a732276dee..4024d48c37 100644
--- a/libnativeloader/Android.bp
+++ b/libnativeloader/Android.bp
@@ -26,7 +26,9 @@ cc_library {
srcs: [
"native_loader.cpp",
],
- header_libs: ["libnativehelper_header_only"],
+ header_libs: [
+ "libnativehelper_header_only",
+ ],
shared_libs: [
"liblog",
"libnativebridge",
@@ -78,6 +80,8 @@ cc_library_headers {
],
host_supported: true,
export_include_dirs: ["include"],
+ header_libs: ["jni_headers"],
+ export_header_lib_headers: ["jni_headers"],
}
cc_test {