4315c6a0c3
standard build; make it use only static libraries as per documented limitations of APCT. Bug: 33384925 Test: This is a test. Change-Id: I794adbfa3376795120cfbca1e9322093960009b5
15 lines
381 B
Makefile
15 lines
381 B
Makefile
# Build the unit tests.
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
|
|
|
|
LOCAL_C_INCLUDES := \
|
|
system/core/fs_mgr/include
|
|
|
|
LOCAL_STATIC_LIBRARIES := libselinux libvold liblog libcrypto
|
|
LOCAL_SRC_FILES := VolumeManager_test.cpp
|
|
LOCAL_MODULE := vold_tests
|
|
LOCAL_MODULE_TAGS := eng tests
|
|
|
|
include $(BUILD_NATIVE_TEST)
|