summaryrefslogtreecommitdiff
path: root/Android.bp
diff options
context:
space:
mode:
Diffstat (limited to 'Android.bp')
-rw-r--r--Android.bp25
1 files changed, 25 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index b015217..b66d9d7 100644
--- a/Android.bp
+++ b/Android.bp
@@ -50,3 +50,28 @@ cc_library {
"libxml2",
],
}
+
+cc_library_static {
+ name: "libdynamic_depth_ndk",
+ defaults: ["libdynamic_depth-defaults"],
+ vendor_available: false,
+ export_include_dirs: [
+ "includes",
+ "internal"
+ ],
+ srcs: ["internal/**/*.cc"],
+ shared_libs: [
+ "liblog",
+ ],
+ static_libs: [
+ "libimage_io_ndk",
+ "libbase_ndk",
+ "libxml2_ndk",
+ ],
+ cflags: [
+ "-fvisibility=hidden",
+ "-DSTATIC_LIBXML=1",
+ ],
+ sdk_version: "current",
+ stl: "c++_static",
+}