diff options
author | Doug Zongker <dougz@android.com> | 2011-10-31 17:34:15 +0100 |
---|---|---|
committer | Doug Zongker <dougz@android.com> | 2011-10-31 23:51:07 +0100 |
commit | daefc1d442fb421606680feb9aeb59c133f4c427 (patch) | |
tree | 71b64ebdd66540aca7a523c73a47626ca519d039 /Android.mk | |
parent | temporarily remove verifier_test binary (diff) | |
download | android_bootable_recovery-daefc1d442fb421606680feb9aeb59c133f4c427.tar android_bootable_recovery-daefc1d442fb421606680feb9aeb59c133f4c427.tar.gz android_bootable_recovery-daefc1d442fb421606680feb9aeb59c133f4c427.tar.bz2 android_bootable_recovery-daefc1d442fb421606680feb9aeb59c133f4c427.tar.lz android_bootable_recovery-daefc1d442fb421606680feb9aeb59c133f4c427.tar.xz android_bootable_recovery-daefc1d442fb421606680feb9aeb59c133f4c427.tar.zst android_bootable_recovery-daefc1d442fb421606680feb9aeb59c133f4c427.zip |
Diffstat (limited to '')
-rw-r--r-- | Android.mk | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Android.mk b/Android.mk index c29ab523f..be9ff9ec8 100644 --- a/Android.mk +++ b/Android.mk @@ -34,7 +34,7 @@ endif LOCAL_MODULE_TAGS := eng ifeq ($(TARGET_RECOVERY_UI_LIB),) - LOCAL_SRC_FILES += default_recovery_ui.c + LOCAL_SRC_FILES += default_device.cpp else LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_UI_LIB) endif @@ -50,17 +50,17 @@ include $(BUILD_EXECUTABLE) include $(CLEAR_VARS) -#LOCAL_SRC_FILES := verifier_test.cpp verifier.cpp +LOCAL_SRC_FILES := verifier_test.cpp verifier.cpp -#LOCAL_MODULE := verifier_test +LOCAL_MODULE := verifier_test -#LOCAL_FORCE_STATIC_EXECUTABLE := true +LOCAL_FORCE_STATIC_EXECUTABLE := true -#LOCAL_MODULE_TAGS := tests +LOCAL_MODULE_TAGS := tests -#LOCAL_STATIC_LIBRARIES := libmincrypt libcutils libstdc++ libc +LOCAL_STATIC_LIBRARIES := libmincrypt libcutils libstdc++ libc -#include $(BUILD_EXECUTABLE) +include $(BUILD_EXECUTABLE) include $(commands_recovery_local_path)/minui/Android.mk |