summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmilian Peev <epeev@google.com>2019-01-29 11:06:19 -0800
committerEmilian Peev <epeev@google.com>2019-02-05 09:29:08 -0800
commit57d75ecd5bc1c94c4483cff98aa9fb28a05f2ea5 (patch)
treec59b7d18b0f5c5194a8e2d5ff24920f8c278f238
parent1e337179334c74429e91531d26afdf380a1d437b (diff)
downloadmodp_b64-57d75ecd5bc1c94c4483cff98aa9fb28a05f2ea5.tar.gz
Add an NDK library variant
An NDK built static variant is needed for clients that build against the NDK. The new library will not be part of the NDK public interface. Bug: 123237859 Test: Camera CTS Change-Id: I379ce9c27c34d54048f4a0f1c3d0b4fadb6abc7e
-rw-r--r--Android.bp15
1 files changed, 15 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index 064aa64..7f0b310 100644
--- a/Android.bp
+++ b/Android.bp
@@ -26,3 +26,18 @@ cc_library_static {
local_include_dirs: ["modp_b64"],
export_include_dirs: ["."],
}
+
+cc_library_static {
+ name: "libmodpb64_ndk",
+ vendor_available: false,
+ srcs: ["modp_b64.cc"],
+
+ cflags: [
+ "-Wall",
+ "-Werror",
+ ],
+ local_include_dirs: ["modp_b64"],
+ export_include_dirs: ["."],
+ sdk_version: "current",
+ stl: "c++_static",
+}