28 lines
665 B
Makefile
28 lines
665 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
TestPlayer.cpp
|
|
|
|
LOCAL_C_INCLUDES+= \
|
|
bionic \
|
|
external/stlport/stlport \
|
|
vendor/widevine/proprietary/streamcontrol/include \
|
|
vendor/widevine/proprietary/drmwvmplugin/include
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libstlport \
|
|
libWVStreamControlAPI \
|
|
libdrmframework \
|
|
libwvdrm \
|
|
liblog \
|
|
libutils \
|
|
libz
|
|
|
|
LOCAL_MODULE:=test-wvplayer
|
|
|
|
LOCAL_MODULE_TAGS := tests
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|