summaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
authorDoug Zongker <dougz@android.com>2009-12-11 00:52:09 +0100
committerAndroid Git Automerger <android-git-automerger@android.com>2009-12-11 00:52:09 +0100
commit25215285c4afb686eab90fa48f0965dcdea3564c (patch)
treef9d624ae37090834c91218b1827e190d8d14bdd9 /Android.mk
parentMerge change I117fdea9 (diff)
parentam 73ae31ce: add a simple unit test for the OTA package verifier (diff)
downloadandroid_bootable_recovery-25215285c4afb686eab90fa48f0965dcdea3564c.tar
android_bootable_recovery-25215285c4afb686eab90fa48f0965dcdea3564c.tar.gz
android_bootable_recovery-25215285c4afb686eab90fa48f0965dcdea3564c.tar.bz2
android_bootable_recovery-25215285c4afb686eab90fa48f0965dcdea3564c.tar.lz
android_bootable_recovery-25215285c4afb686eab90fa48f0965dcdea3564c.tar.xz
android_bootable_recovery-25215285c4afb686eab90fa48f0965dcdea3564c.tar.zst
android_bootable_recovery-25215285c4afb686eab90fa48f0965dcdea3564c.zip
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 913aa1491..e89b2258c 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