Fixed test-wvplayer unit test. Some restructuring of the drm plugin broke this test, now it is working again. This is an important unit test for OEMs developing support for Widevine. Change-Id: I528608bf594f7211d839a0c3cacc5a69a7301fdf
37 lines
930 B
Makefile
37 lines
930 B
Makefile
ifeq ($(TARGET_ARCH),arm)
|
|
|
|
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
TestPlayer.cpp
|
|
|
|
LOCAL_C_INCLUDES+= \
|
|
bionic \
|
|
vendor/widevine/proprietary/include \
|
|
external/stlport/stlport \
|
|
vendor/widevine/proprietary/streamcontrol/include \
|
|
vendor/widevine/proprietary/drmwvmplugin/include \
|
|
frameworks/base/drm/libdrmframework/include \
|
|
frameworks/base/drm/libdrmframework/plugins/common/include
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libstlport \
|
|
libWVStreamControlAPI \
|
|
libdrmframework \
|
|
libwvdrm \
|
|
liblog \
|
|
libutils \
|
|
libz \
|
|
libcutils \
|
|
libdl
|
|
|
|
LOCAL_MODULE:=test-wvplayer
|
|
|
|
LOCAL_MODULE_TAGS := tests
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
endif
|