13 lines
263 B
Makefile
13 lines
263 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := \
|
|
queue_worker_test.cpp \
|
|
worker_test.cpp
|
|
|
|
LOCAL_MODULE := hwc-drm-tests
|
|
LOCAL_STATIC_LIBRARIES := libdrmhwc_utils
|
|
LOCAL_C_INCLUDES := external/drm_hwcomposer
|
|
|
|
include $(BUILD_NATIVE_TEST)
|