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.
26 lines
489 B
26 lines
489 B
# Build the unit tests, |
|
LOCAL_PATH:= $(call my-dir) |
|
include $(CLEAR_VARS) |
|
|
|
LOCAL_MODULE := nv12_ved_test |
|
|
|
LOCAL_MODULE_TAGS := tests |
|
|
|
LOCAL_SRC_FILES := \ |
|
nv12_ved_test.cpp \ |
|
|
|
LOCAL_SHARED_LIBRARIES := \ |
|
libEGL \ |
|
libGLESv2 \ |
|
libbinder \ |
|
libcutils \ |
|
libgui \ |
|
libui \ |
|
libutils \ |
|
|
|
LOCAL_C_INCLUDES := \ |
|
$(call include-path-for, gtest) \ |
|
|
|
# Build the binary to $(TARGET_OUT_DATA_NATIVE_TESTS)/$(LOCAL_MODULE) |
|
# to integrate with auto-test framework. |
|
include $(BUILD_EXECUTABLE)
|
|
|