OEM security levels used on tuna vs stingray & crespo. This is part of the work for b/4598045 Implementing secure video path on TI OMAP4 chip for ICS. The Widevine libraries included here, 4.5.0.4321 also contain a fix for b/4400696 Pinning and unpinning multiple movie for download behavior is not uniform for multiple tries. Change-Id: I67f34c06a0353ac7f401f55c1ed4fc2493bc8ab7
35 lines
778 B
Makefile
35 lines
778 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 \
|
|
liblog \
|
|
libutils \
|
|
libz \
|
|
libdl
|
|
|
|
LOCAL_STATIC_LIBRARIES := \
|
|
libdrmframeworkcommon
|
|
|
|
LOCAL_MODULE:=test-wvdrmplugin
|
|
|
|
LOCAL_MODULE_TAGS := tests
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
endif |