OSDN Git Service

cryptfs: [HACK] reboot if the crypto block dev failed to open
[android-x86/system-vold.git] / tests / Android.mk
index 8ae4b5d..bcdcfca 100644 (file)
@@ -1,36 +1,20 @@
 # Build the unit tests.
 LOCAL_PATH := $(call my-dir)
-include $(CLEAR_VARS)
-
-test_src_files := \
-       VolumeManager_test.cpp
 
-shared_libraries := \
-       liblog \
-       libstlport \
-       libcrypto
+include $(CLEAR_VARS)
+LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
 
-static_libraries := \
-       libvold \
-       libgtest \
-       libgtest_main
+LOCAL_C_INCLUDES := \
+    system/core/fs_mgr/include \
+    external/openssl/include \
 
-c_includes := \
-       external/openssl/include \
-       bionic \
-       bionic/libstdc++/include \
-       external/gtest/include \
-       external/stlport/stlport
+LOCAL_SHARED_LIBRARIES := \
+    liblog \
+    libcrypto \
 
-module_tags := eng tests
+LOCAL_STATIC_LIBRARIES := libvold
+LOCAL_SRC_FILES := VolumeManager_test.cpp
+LOCAL_MODULE := vold_tests
+LOCAL_MODULE_TAGS := eng tests
 
-$(foreach file,$(test_src_files), \
-    $(eval include $(CLEAR_VARS)) \
-    $(eval LOCAL_SHARED_LIBRARIES := $(shared_libraries)) \
-    $(eval LOCAL_STATIC_LIBRARIES := $(static_libraries)) \
-    $(eval LOCAL_C_INCLUDES := $(c_includes)) \
-    $(eval LOCAL_SRC_FILES := $(file)) \
-    $(eval LOCAL_MODULE := $(notdir $(file:%.cpp=%))) \
-    $(eval LOCAL_MODULE_TAGS := $(module_tags)) \
-    $(eval include $(BUILD_EXECUTABLE)) \
-)
+include $(BUILD_NATIVE_TEST)