Files
android/proprietary/drmwvmplugin/test/Android.mk
2011-03-18 12:14:31 -07:00

36 lines
806 B
Makefile

ifeq ($(TARGET_ARCH),arm)
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_SRC_FILES:= \
TestPlugin.cpp \
../src/WVMLogging.cpp
LOCAL_C_INCLUDES+= \
bionic \
vendor/widevine/proprietary/include \
vendor/widevine/proprietary/drmwvmplugin/include \
vendor/widevine/proprietary/streamcontrol/include \
external/stlport/stlport \
frameworks/base/drm/libdrmframework/include \
frameworks/base/drm/libdrmframework/plugins/common/include
LOCAL_SHARED_LIBRARIES := \
libstlport \
libwvdrm \
liblog \
libutils \
libz \
libdl
LOCAL_STATIC_LIBRARIES := \
libdrmframeworkcommon
LOCAL_MODULE:=test-wvdrmplugin
LOCAL_MODULE_TAGS := tests
include $(BUILD_EXECUTABLE)
endif