Fix for b/4104838 DRM doesn't work on master TOT

Moved final build of widevine DRM plugin into vendor directory for platform
to avoid needing to reference device-specific libs in the Widevine DRM plugin
link.

Also removed some old .sh scripts that are not needed.

Change-Id: Ie6d397c97bc8afd8154f1dddadbab8c7ee524d7a
This commit is contained in:
Jeff Tinker
2011-06-27 10:17:41 -07:00
parent 61cf3d5049
commit 76665fc951
7 changed files with 54 additions and 98 deletions

View File

@@ -0,0 +1,25 @@
#
# To be included by platform-specific vendor Android.mk to build
# Widevine DRM plugin. Sets up includes and defines the core libraries
# required to build the plugin.
#
include $(TOP)/vendor/widevine/proprietary/drmwvmplugin/common.mk
LOCAL_STATIC_LIBRARIES := \
libdrmframeworkcommon \
libdrmwvmcommon \
libwvocs
LOCAL_SHARED_LIBRARIES := \
libutils \
libcutils \
libstlport \
libz \
libwvdrm \
libWVStreamControlAPI
ifeq ($(TARGET_SIMULATOR),true)
LOCAL_LDLIBS += -ldl
else
LOCAL_SHARED_LIBRARIES += libdl
endif