summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnand Prasad <anprasad@nvidia.com>2015-11-03 19:48:43 +0000
committerandroid-build-merger <android-build-merger@google.com>2015-11-03 19:48:43 +0000
commit6a886d78a06c75be38ecedf538137d33b25209bd (patch)
treee59b6acd9483ec7d591814c010bfcd87f13f5b97
parent22febf8e7b6aed20db450b5967a63790562f7c6d (diff)
parent3c4cbf7f9434f54f8d306c059fcb7007ecb4a937 (diff)
downloadgatekeeper-6a886d78a06c75be38ecedf538137d33b25209bd.tar.gz
Add static gatekeeper library
am: 3c4cbf7f94 * commit '3c4cbf7f9434f54f8d306c059fcb7007ecb4a937': Add static gatekeeper library
-rw-r--r--Android.mk13
1 files changed, 13 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
index 677118f..3e3c295 100644
--- a/Android.mk
+++ b/Android.mk
@@ -36,4 +36,17 @@ LOCAL_CLANG_CFLAGS += -fno-sanitize-coverage=edge,indirect-calls,8bit-counters,t
include $(BUILD_SHARED_LIBRARY)
+###
+# libgatekeeper_static is an empty static library that exports
+# all of the files in gatekeeper as includes.
+###
+include $(CLEAR_VARS)
+LOCAL_MODULE := libgatekeeper_static
+LOCAL_EXPORT_C_INCLUDE_DIRS := \
+ $(LOCAL_PATH) \
+ $(LOCAL_PATH)/include
+LOCAL_MODULE_TAGS := optional
+LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
+include $(BUILD_STATIC_LIBRARY)
+
include $(call first-makefiles-under,$(LOCAL_PATH))