Includes Widevine libraries Version 4.5.0.7809 Also fixed samplePlayer's MediaCodec mode not running and WVDrmInfoRequestStatusKey returning incorrect value. Change-Id: Ibcc6d313790670a908ada93be80d6bf55a67b4ed related-to-bug: 6929628 related-to-bug: 6833718 related-to-bug: 6889322
36 lines
739 B
Makefile
36 lines
739 B
Makefile
ifneq ($(filter arm x86,$(TARGET_ARCH)),)
|
|
|
|
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
Testlibwvm.cpp
|
|
|
|
LOCAL_C_INCLUDES+= \
|
|
bionic \
|
|
vendor/widevine/proprietary/include \
|
|
external/stlport/stlport \
|
|
frameworks/av/media/libstagefright
|
|
|
|
ifeq ($(TARGET_ARCH),x86)
|
|
LOCAL_C_INCLUDES += $(TOP)/system/core/include/arch/linux-x86
|
|
endif
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libstlport \
|
|
libdrmframework \
|
|
libstagefright \
|
|
liblog \
|
|
libutils \
|
|
libz \
|
|
libdl
|
|
|
|
LOCAL_MODULE:=test-libwvm
|
|
|
|
LOCAL_MODULE_TAGS := tests
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
endif
|