diff options
author | Doug Zongker <dougz@android.com> | 2009-12-11 00:35:23 +0100 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2009-12-11 00:35:23 +0100 |
commit | 9b430e11d6c4fb907d0aa96667142e2c00585e09 (patch) | |
tree | 3d7f4df0550a64aed5cf98eb165de9a4ca7d7cfc /Android.mk | |
parent | am 9acf28a3: am c652e41d: fix cut-and-paste error in verifier (diff) | |
parent | add a simple unit test for the OTA package verifier (diff) | |
download | android_bootable_recovery-9b430e11d6c4fb907d0aa96667142e2c00585e09.tar android_bootable_recovery-9b430e11d6c4fb907d0aa96667142e2c00585e09.tar.gz android_bootable_recovery-9b430e11d6c4fb907d0aa96667142e2c00585e09.tar.bz2 android_bootable_recovery-9b430e11d6c4fb907d0aa96667142e2c00585e09.tar.lz android_bootable_recovery-9b430e11d6c4fb907d0aa96667142e2c00585e09.tar.xz android_bootable_recovery-9b430e11d6c4fb907d0aa96667142e2c00585e09.tar.zst android_bootable_recovery-9b430e11d6c4fb907d0aa96667142e2c00585e09.zip |
Diffstat (limited to 'Android.mk')
-rw-r--r-- | Android.mk | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk index deec80ae4..c7ae1f1e2 100644 --- a/Android.mk +++ b/Android.mk @@ -43,6 +43,22 @@ LOCAL_STATIC_LIBRARIES += libstdc++ libc include $(BUILD_EXECUTABLE) + +include $(CLEAR_VARS) + +LOCAL_SRC_FILES := verifier_test.c verifier.c + +LOCAL_MODULE := verifier_test + +LOCAL_FORCE_STATIC_EXECUTABLE := true + +LOCAL_MODULE_TAGS := tests + +LOCAL_STATIC_LIBRARIES := libmincrypt libcutils libstdc++ libc + +include $(BUILD_EXECUTABLE) + + include $(commands_recovery_local_path)/minui/Android.mk include $(commands_recovery_local_path)/minzip/Android.mk include $(commands_recovery_local_path)/mtdutils/Android.mk |