diff options
author | Tao Bao <tbao@google.com> | 2017-10-09 22:57:58 +0200 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2017-10-09 22:57:58 +0200 |
commit | 7a3fc2de8eb535637055a4a1c0063c5fbc101c4a (patch) | |
tree | 57e9458f101d41082073491d2fad407706e92cee | |
parent | Merge "Don't include "error_code.h" in edify/expr.h." (diff) | |
parent | applypatch: Forward declare struct Value. (diff) | |
download | android_bootable_recovery-7a3fc2de8eb535637055a4a1c0063c5fbc101c4a.tar android_bootable_recovery-7a3fc2de8eb535637055a4a1c0063c5fbc101c4a.tar.gz android_bootable_recovery-7a3fc2de8eb535637055a4a1c0063c5fbc101c4a.tar.bz2 android_bootable_recovery-7a3fc2de8eb535637055a4a1c0063c5fbc101c4a.tar.lz android_bootable_recovery-7a3fc2de8eb535637055a4a1c0063c5fbc101c4a.tar.xz android_bootable_recovery-7a3fc2de8eb535637055a4a1c0063c5fbc101c4a.tar.zst android_bootable_recovery-7a3fc2de8eb535637055a4a1c0063c5fbc101c4a.zip |
-rw-r--r-- | applypatch/Android.mk | 2 | ||||
-rw-r--r-- | applypatch/bspatch.cpp | 3 | ||||
-rw-r--r-- | applypatch/imgpatch.cpp | 2 | ||||
-rw-r--r-- | applypatch/include/applypatch/applypatch.h | 3 | ||||
-rw-r--r-- | edify/Android.mk | 16 |
5 files changed, 24 insertions, 2 deletions
diff --git a/applypatch/Android.mk b/applypatch/Android.mk index f5dda2bc4..db72e8eee 100644 --- a/applypatch/Android.mk +++ b/applypatch/Android.mk @@ -53,6 +53,7 @@ LOCAL_C_INCLUDES := \ bootable/recovery LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include LOCAL_STATIC_LIBRARIES := \ + libedify \ libcrypto \ libbspatch \ libbase \ @@ -77,6 +78,7 @@ LOCAL_C_INCLUDES := \ bootable/recovery LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include LOCAL_STATIC_LIBRARIES := \ + libedify \ libcrypto \ libbspatch \ libbase \ diff --git a/applypatch/bspatch.cpp b/applypatch/bspatch.cpp index 65ee614ef..b2f29fbd6 100644 --- a/applypatch/bspatch.cpp +++ b/applypatch/bspatch.cpp @@ -30,6 +30,7 @@ #include <openssl/sha.h> #include "applypatch/applypatch.h" +#include "edify/expr.h" #include "print_sha1.h" void ShowBSDiffLicense() { @@ -91,4 +92,4 @@ int ApplyBSDiffPatch(const unsigned char* old_data, size_t old_size, const Value } } return result; -}
\ No newline at end of file +} diff --git a/applypatch/imgpatch.cpp b/applypatch/imgpatch.cpp index df75f98d4..7a43ddbef 100644 --- a/applypatch/imgpatch.cpp +++ b/applypatch/imgpatch.cpp @@ -37,6 +37,8 @@ #include <openssl/sha.h> #include <zlib.h> +#include "edify/expr.h" + static inline int64_t Read8(const void *address) { return android::base::get_unaligned<int64_t>(address); } diff --git a/applypatch/include/applypatch/applypatch.h b/applypatch/include/applypatch/applypatch.h index 581360ef1..2a3b3ef39 100644 --- a/applypatch/include/applypatch/applypatch.h +++ b/applypatch/include/applypatch/applypatch.h @@ -27,7 +27,8 @@ #include <openssl/sha.h> -#include "edify/expr.h" +// Forward declaration to avoid including "edify/expr.h" in the header. +struct Value; struct FileContents { uint8_t sha1[SHA_DIGEST_LENGTH]; diff --git a/edify/Android.mk b/edify/Android.mk index cec65f42a..fbf2b1b06 100644 --- a/edify/Android.mk +++ b/edify/Android.mk @@ -34,3 +34,19 @@ LOCAL_C_INCLUDES += $(LOCAL_PATH)/.. LOCAL_STATIC_LIBRARIES += libbase include $(BUILD_STATIC_LIBRARY) + +# +# Build the host-side library (static library) +# +include $(CLEAR_VARS) + +LOCAL_SRC_FILES := $(edify_src_files) + +LOCAL_CFLAGS := -Wall -Werror +LOCAL_CPPFLAGS := -Wno-unused-parameter +LOCAL_CPPFLAGS += -Wno-deprecated-register +LOCAL_MODULE := libedify +LOCAL_C_INCLUDES += $(LOCAL_PATH)/.. +LOCAL_STATIC_LIBRARIES += libbase + +include $(BUILD_HOST_STATIC_LIBRARY) |