Files
android/proprietary/drmwvmplugin/plugin-core.mk
Ying Wang fee0126ed8 Use LOCAL_WHOLE_STATIC_LIBRARIES
to include the static libraries in the final shared libraries.

Change-Id: Iecb6b377e2dead41478d88bf576c06bc3ff2d886
2011-06-29 11:09:59 -07:00

27 lines
662 B
Makefile

#
# 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_WHOLE_STATIC_LIBRARIES := \
libdrmframeworkcommon \
libdrmwvmcommon \
libwvocs
LOCAL_SHARED_LIBRARIES := \
libbinder \
libutils \
libcutils \
libstlport \
libz \
libwvdrm \
libWVStreamControlAPI
ifeq ($(TARGET_SIMULATOR),true)
LOCAL_LDLIBS += -ldl
else
LOCAL_SHARED_LIBRARIES += libdl
endif