summaryrefslogtreecommitdiffstats
path: root/fastboot/Android.mk
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2015-03-19 17:20:35 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2015-03-19 17:20:35 +0000
commit445e5edeeb7c303ea517752cd5de4c6aac0a2d77 (patch)
treefba1308a842456b1a7d48ff5dd267e119cd56875 /fastboot/Android.mk
parentb4ebc475e678e1dce5e4c78436a0b2fc4813159d (diff)
parentd30ad8a2eeefc382e898f2130d0be9461eed0bd9 (diff)
downloadsystem_core-445e5edeeb7c303ea517752cd5de4c6aac0a2d77.zip
system_core-445e5edeeb7c303ea517752cd5de4c6aac0a2d77.tar.gz
system_core-445e5edeeb7c303ea517752cd5de4c6aac0a2d77.tar.bz2
Merge "Switch fastboot to libziparchive."
Diffstat (limited to 'fastboot/Android.mk')
-rw-r--r--fastboot/Android.mk6
1 files changed, 4 insertions, 2 deletions
diff --git a/fastboot/Android.mk b/fastboot/Android.mk
index 9cb002f..b9e957f 100644
--- a/fastboot/Android.mk
+++ b/fastboot/Android.mk
@@ -23,7 +23,7 @@ LOCAL_SRC_FILES := protocol.c engine.c bootimg_utils.cpp fastboot.cpp util.c fs.
LOCAL_MODULE := fastboot
LOCAL_MODULE_TAGS := debug
LOCAL_CONLYFLAGS += -std=gnu99
-LOCAL_CFLAGS += -Wall -Werror
+LOCAL_CFLAGS += -Wall -Wextra -Werror
ifeq ($(HOST_OS),linux)
LOCAL_SRC_FILES += usb_linux.c util_linux.c
@@ -53,9 +53,11 @@ endif
LOCAL_STATIC_LIBRARIES := \
$(EXTRA_STATIC_LIBS) \
- libzipfile \
+ libziparchive-host \
libext4_utils_host \
libsparse_host \
+ libutils \
+ liblog \
libz
ifneq ($(HOST_OS),windows)