diff options
author | Elliott Hughes <enh@google.com> | 2015-03-19 17:20:35 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-03-19 17:20:35 +0000 |
commit | 445e5edeeb7c303ea517752cd5de4c6aac0a2d77 (patch) | |
tree | fba1308a842456b1a7d48ff5dd267e119cd56875 /fastboot/Android.mk | |
parent | b4ebc475e678e1dce5e4c78436a0b2fc4813159d (diff) | |
parent | d30ad8a2eeefc382e898f2130d0be9461eed0bd9 (diff) | |
download | system_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.mk | 6 |
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) |