summaryrefslogtreecommitdiffstats
path: root/update_verifier/Android.mk
diff options
context:
space:
mode:
authorTianjie Xu <xunchang@google.com>2016-03-01 01:08:06 +0100
committerTianjie Xu <xunchang@google.com>2016-11-09 21:10:27 +0100
commitd007cf2da29f05eee002dd33e6c04262f709b274 (patch)
tree8e1c225954c62647a1aa2d598ca1d0c013c20efd /update_verifier/Android.mk
parentMerge "Make make_parent() to take const argument" (diff)
downloadandroid_bootable_recovery-d007cf2da29f05eee002dd33e6c04262f709b274.tar
android_bootable_recovery-d007cf2da29f05eee002dd33e6c04262f709b274.tar.gz
android_bootable_recovery-d007cf2da29f05eee002dd33e6c04262f709b274.tar.bz2
android_bootable_recovery-d007cf2da29f05eee002dd33e6c04262f709b274.tar.lz
android_bootable_recovery-d007cf2da29f05eee002dd33e6c04262f709b274.tar.xz
android_bootable_recovery-d007cf2da29f05eee002dd33e6c04262f709b274.tar.zst
android_bootable_recovery-d007cf2da29f05eee002dd33e6c04262f709b274.zip
Diffstat (limited to '')
-rw-r--r--update_verifier/Android.mk9
1 files changed, 8 insertions, 1 deletions
diff --git a/update_verifier/Android.mk b/update_verifier/Android.mk
index 8f5194db6..8449c758d 100644
--- a/update_verifier/Android.mk
+++ b/update_verifier/Android.mk
@@ -18,8 +18,15 @@ include $(CLEAR_VARS)
LOCAL_CLANG := true
LOCAL_SRC_FILES := update_verifier.cpp
+
LOCAL_MODULE := update_verifier
-LOCAL_SHARED_LIBRARIES := libhardware libbase
+LOCAL_SHARED_LIBRARIES := \
+ libbase \
+ libcutils \
+ libhardware \
+ liblog
+
LOCAL_CFLAGS := -Werror
+LOCAL_C_INCLUDES += $(LOCAL_PATH)/..
include $(BUILD_EXECUTABLE)