diff options
author | Josh Gao <jmgao@google.com> | 2016-08-08 20:29:10 +0200 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2016-08-08 20:29:10 +0200 |
commit | b97da5e0f0ca49b92759ea57415e7064fc29c77d (patch) | |
tree | 51fbab5cb49dbb32692ba762678e90890f694cef /Android.mk | |
parent | Merge "Recovery mode UI flicker" (diff) | |
parent | Fix references to libcrypto_utils_static. (diff) | |
download | android_bootable_recovery-b97da5e0f0ca49b92759ea57415e7064fc29c77d.tar android_bootable_recovery-b97da5e0f0ca49b92759ea57415e7064fc29c77d.tar.gz android_bootable_recovery-b97da5e0f0ca49b92759ea57415e7064fc29c77d.tar.bz2 android_bootable_recovery-b97da5e0f0ca49b92759ea57415e7064fc29c77d.tar.lz android_bootable_recovery-b97da5e0f0ca49b92759ea57415e7064fc29c77d.tar.xz android_bootable_recovery-b97da5e0f0ca49b92759ea57415e7064fc29c77d.tar.zst android_bootable_recovery-b97da5e0f0ca49b92759ea57415e7064fc29c77d.zip |
Diffstat (limited to 'Android.mk')
-rw-r--r-- | Android.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Android.mk b/Android.mk index 384eefe3f..b1d84cd99 100644 --- a/Android.mk +++ b/Android.mk @@ -22,7 +22,7 @@ LOCAL_CLANG := true LOCAL_CFLAGS := -O2 -g -DADB_HOST=0 -Wall -Wno-unused-parameter -Werror LOCAL_CFLAGS += -D_XOPEN_SOURCE -D_GNU_SOURCE LOCAL_MODULE := libfusesideload -LOCAL_STATIC_LIBRARIES := libcutils libc libcrypto_static +LOCAL_STATIC_LIBRARIES := libcutils libc libcrypto include $(BUILD_STATIC_LIBRARY) # libmounts (static library) @@ -85,8 +85,8 @@ LOCAL_STATIC_LIBRARIES := \ libminui \ libpng \ libfs_mgr \ - libcrypto_utils_static \ - libcrypto_static \ + libcrypto_utils \ + libcrypto \ libbase \ libcutils \ libutils \ @@ -144,7 +144,7 @@ LOCAL_SRC_FILES := \ asn1_decoder.cpp \ verifier.cpp \ ui.cpp -LOCAL_STATIC_LIBRARIES := libcrypto_utils_static libcrypto_static +LOCAL_STATIC_LIBRARIES := libcrypto_utils libcrypto include $(BUILD_STATIC_LIBRARY) include $(LOCAL_PATH)/minui/Android.mk \ |