Files
android/proprietary/drmwvmplugin/Android.mk
Jeff Tinker 9e8923789e Some restructuring of the build was required to support the different
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
2011-08-12 11:38:16 -07:00

42 lines
846 B
Makefile

LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
########################
# Feature file for clients to look up widevine drm plug-in
include $(CLEAR_VARS)
LOCAL_MODULE := com.google.widevine.software.drm.xml
LOCAL_SRC_FILES := $(LOCAL_MODULE)
LOCAL_MODULE_TAGS := optional
LOCAL_MODULE_CLASS := ETC
# This will install the file in /system/etc/permissions
#
LOCAL_MODULE_PATH := $(TARGET_OUT_ETC)/permissions
include $(BUILD_PREBUILT)
########################
ifeq ($(TARGET_ARCH),arm)
include $(CLEAR_VARS)
include $(TOP)/vendor/widevine/proprietary/drmwvmplugin/common.mk
LOCAL_SRC_FILES:= \
src/WVMDrmPlugin.cpp \
src/WVMLogging.cpp
LOCAL_MODULE := libdrmwvmcommon
LOCAL_MODULE_TAGS := optional
include $(BUILD_STATIC_LIBRARY)
# invoke Android.mk files in subdirs
include $(call all-makefiles-under,$(LOCAL_PATH))
endif