aboutsummaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
authorDoug Zongker <dougz@android.com>2009-12-10 15:52:09 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2009-12-10 15:52:09 -0800
commit25215285c4afb686eab90fa48f0965dcdea3564c (patch)
treef9d624ae37090834c91218b1827e190d8d14bdd9 /Android.mk
parentbd6181ad58c6c3562be58ef41d61460384e6fd8e (diff)
parent9b430e11d6c4fb907d0aa96667142e2c00585e09 (diff)
downloadbootable_recovery-25215285c4afb686eab90fa48f0965dcdea3564c.zip
bootable_recovery-25215285c4afb686eab90fa48f0965dcdea3564c.tar.gz
bootable_recovery-25215285c4afb686eab90fa48f0965dcdea3564c.tar.bz2
am 9b430e11: am 73ae31ce: add a simple unit test for the OTA package verifier
Merge commit '9b430e11d6c4fb907d0aa96667142e2c00585e09' * commit '9b430e11d6c4fb907d0aa96667142e2c00585e09': add a simple unit test for the OTA package verifier
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk16
1 files changed, 16 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
index 913aa14..e89b225 100644
--- a/Android.mk
+++ b/Android.mk
@@ -44,6 +44,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