This updates the Widevine Classic libraries to version 4.5.0.10107. This version backports the bugfix for the IPv6 issue from JB-MR2. Also, the Widevine build system has been updated to support all six flavors. (2 security levels x 3 instruction sets) This change adds x86 L1 binaries and MIPS L3 binaries, as these have been validated by partners. Bug: 10246711 Change-Id: Ic0cf32ffd82fc8dacced84cecdee059afa1049ca
41 lines
937 B
Makefile
41 lines
937 B
Makefile
ifneq ($(filter arm x86 mips,$(TARGET_ARCH)),)
|
|
|
|
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
TestPlayer.cpp
|
|
|
|
LOCAL_MODULE_TAGS := tests
|
|
|
|
LOCAL_C_INCLUDES += \
|
|
bionic \
|
|
vendor/widevine/proprietary/include \
|
|
external/stlport/stlport \
|
|
vendor/widevine/proprietary/streamcontrol/include \
|
|
vendor/widevine/proprietary/drmwvmplugin/include \
|
|
frameworks/av/drm/libdrmframework/include \
|
|
frameworks/av/drm/libdrmframework/plugins/common/include
|
|
|
|
ifeq ($(TARGET_ARCH),x86)
|
|
LOCAL_C_INCLUDES += $(TOP)/system/core/include/arch/linux-x86
|
|
endif
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libstlport \
|
|
libdrmframework \
|
|
liblog \
|
|
libutils \
|
|
libz \
|
|
libcutils \
|
|
libdl \
|
|
libWVStreamControlAPI_L$(BOARD_WIDEVINE_OEMCRYPTO_LEVEL) \
|
|
libwvdrm_L$(BOARD_WIDEVINE_OEMCRYPTO_LEVEL)
|
|
|
|
LOCAL_MODULE:=test-wvplayer_L$(BOARD_WIDEVINE_OEMCRYPTO_LEVEL)
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
endif
|