If the .wvm extension is not present, the file header is parsed to determine if it is Widevine content. - Fixed a missing call to OpenSession. - Fixed unit test build. - Fixed x86-eng build. - This is cherry-picked from master to hc-mr1 branch "DO NOT MERGE" Change-Id: Ied0579325d3c11a91f6f182fe59cd978eca68368
34 lines
774 B
Makefile
34 lines
774 B
Makefile
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 \
|
|
libwvdrm \
|
|
liblog \
|
|
libutils \
|
|
libz \
|
|
libdl
|
|
|
|
LOCAL_STATIC_LIBRARIES := \
|
|
libdrmframeworkcommon
|
|
|
|
LOCAL_MODULE:=test-wvdrmplugin
|
|
|
|
LOCAL_MODULE_TAGS := tests
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|