You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
414 B
25 lines
414 B
# Build the unit tests |
|
LOCAL_PATH:= $(call my-dir) |
|
include $(CLEAR_VARS) |
|
|
|
LOCAL_MODULE := MediaResourceManager_test |
|
|
|
LOCAL_MODULE_TAGS := tests |
|
|
|
LOCAL_SRC_FILES := \ |
|
MediaResourceManager_test.cpp \ |
|
|
|
LOCAL_SHARED_LIBRARIES := \ |
|
liblog \ |
|
libmrm_arbitrator \ |
|
libutils \ |
|
|
|
LOCAL_C_INCLUDES := \ |
|
$(LOCAL_PATH)/../arbitrator \ |
|
|
|
#LOCAL_32_BIT_ONLY := true |
|
|
|
LOCAL_CFLAGS += -Werror |
|
|
|
include $(BUILD_NATIVE_TEST) |
|
|
|
|