aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChih-hung Hsieh <chh@google.com>2017-10-12 18:01:32 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2017-10-12 18:01:32 +0000
commit1a709bc5d0d3c992c49e8f2e860e3e8d52cfcc08 (patch)
treeb1afb82aceb72b3c52d135396a91a4557b57e3af
parenta88b9629447deabe8697d2f8fd4cc70aa6e1b563 (diff)
parent0fee559bfc7a3acf0a122435df11eb58883b26f2 (diff)
downloadliblzf-1a709bc5d0d3c992c49e8f2e860e3e8d52cfcc08.tar.gz
Merge "Use -Werror in external/liblzf"
-rw-r--r--Android.mk3
1 files changed, 3 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
index 2cce0dc..c0f68c5 100644
--- a/Android.mk
+++ b/Android.mk
@@ -12,6 +12,7 @@ include $(CLEAR_VARS)
LOCAL_MODULE := liblzf
LOCAL_SRC_FILES := $(libLZF_SRC_FILES)
+LOCAL_CFLAGS := -Wall -Werror
include $(BUILD_HOST_STATIC_LIBRARY)
@@ -22,6 +23,7 @@ include $(CLEAR_VARS)
LOCAL_MODULE := liblzf
LOCAL_SRC_FILES := $(libLZF_SRC_FILES)
+LOCAL_CFLAGS := -Wall -Werror
include $(BUILD_STATIC_LIBRARY)
@@ -32,5 +34,6 @@ include $(CLEAR_VARS)
LOCAL_SRC_FILES := $(call all-java-files-under, src)
LOCAL_MODULE := liblzf
LOCAL_MODULE_TAGS := optional
+LOCAL_CFLAGS := -Wall -Werror
include $(BUILD_HOST_JAVA_LIBRARY)