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
28 lines
641 B
Makefile
28 lines
641 B
Makefile
#
|
|
# To be included by platform-specific vendor Android.mk to build
|
|
# Widevine wvm static library. Sets up includes and defines the core libraries
|
|
# required.
|
|
#
|
|
include $(TOP)/vendor/widevine/proprietary/wvm/common.mk
|
|
|
|
ifndef BOARD_WIDEVINE_OEMCRYPTO_LEVEL
|
|
$(error BOARD_WIDEVINE_OEMCRYPTO_LEVEL not defined!)
|
|
endif
|
|
|
|
LOCAL_WHOLE_STATIC_LIBRARIES := \
|
|
libwvmcommon
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libstlport \
|
|
libstagefright \
|
|
libWVStreamControlAPI_L$(BOARD_WIDEVINE_OEMCRYPTO_LEVEL) \
|
|
libdrmframework \
|
|
libcutils \
|
|
liblog \
|
|
libutils \
|
|
libz
|
|
|
|
ifeq ($(TARGET_ARCH),x86)
|
|
LOCAL_SHARED_LIBRARIES += libdl
|
|
endif
|