aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Moreland <smoreland@google.com>2017-07-17 13:25:56 -0700
committerSteven Moreland <smoreland@google.com>2017-07-17 13:26:00 -0700
commite02e4334e291a41d16397799daeebe28491092b3 (patch)
treece0dc94219dea9be4d22092347b14acad7e36851
parent93fdb709016b886dd665acf1c0c56ba5be487342 (diff)
downloadlibese-e02e4334e291a41d16397799daeebe28491092b3.tar.gz
Make libese-app-weaver-test build with the VNDK.
When the vndk is enabled (BOARD_VNDK_VERSION=current), vendor libraries must only link against vendor variants in the build system. This also means that they receive restricted sets of headers and that automatic global headers are restricted. Test: build libese-app-weaver-test with BOARD_VNDK_VERSION=current Bug: 37342627 Change-Id: I3ec12f5da0f6e7eece3ae3b59dac2c276b0f5c84
-rw-r--r--libese/Android.bp3
1 files changed, 3 insertions, 0 deletions
diff --git a/libese/Android.bp b/libese/Android.bp
index 8352170..f495f12 100644
--- a/libese/Android.bp
+++ b/libese/Android.bp
@@ -47,7 +47,10 @@ cc_library {
"ese_sg.c",
],
+ export_include_dirs: ["include"],
+
shared_libs: ["libese-sysdeps", "liblog"],
+ export_shared_lib_headers: ["liblog"],
}
subdirs = ["tests"]