diff options
author | Tianjie Xu <xunchang@google.com> | 2016-09-30 22:34:23 +0200 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2016-09-30 22:34:23 +0200 |
commit | 10e223c18100239bfc55c7ceae1744ed84ab9843 (patch) | |
tree | d914da4be18ef00a95ba4585e2cec21053db46b4 /uncrypt | |
parent | Merge "Turn on -Werror for recovery" am: 695ef7cacc am: 5269808bb0 am: dbde5cf1d5 -s ours (diff) | |
parent | Turn on -Werror for recovery (diff) | |
download | android_bootable_recovery-10e223c18100239bfc55c7ceae1744ed84ab9843.tar android_bootable_recovery-10e223c18100239bfc55c7ceae1744ed84ab9843.tar.gz android_bootable_recovery-10e223c18100239bfc55c7ceae1744ed84ab9843.tar.bz2 android_bootable_recovery-10e223c18100239bfc55c7ceae1744ed84ab9843.tar.lz android_bootable_recovery-10e223c18100239bfc55c7ceae1744ed84ab9843.tar.xz android_bootable_recovery-10e223c18100239bfc55c7ceae1744ed84ab9843.tar.zst android_bootable_recovery-10e223c18100239bfc55c7ceae1744ed84ab9843.zip |
Diffstat (limited to 'uncrypt')
-rw-r--r-- | uncrypt/Android.mk | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/uncrypt/Android.mk b/uncrypt/Android.mk index bb276edd5..97fc70896 100644 --- a/uncrypt/Android.mk +++ b/uncrypt/Android.mk @@ -17,16 +17,15 @@ LOCAL_PATH := $(call my-dir) include $(CLEAR_VARS) LOCAL_CLANG := true - LOCAL_SRC_FILES := uncrypt.cpp - LOCAL_C_INCLUDES := $(LOCAL_PATH)/.. - LOCAL_MODULE := uncrypt - -LOCAL_STATIC_LIBRARIES := libbootloader_message libbase \ - liblog libfs_mgr libcutils \ - +LOCAL_STATIC_LIBRARIES := libbootloader_message \ + libbase \ + liblog \ + libfs_mgr \ + libcutils +LOCAL_CFLAGS := -Werror LOCAL_INIT_RC := uncrypt.rc include $(BUILD_EXECUTABLE) |