Rahul's changes in preparation for adding x86 support Change-Id: Ib51dfa72291857c44be37595be2205dd040fc0dd related-to-bug: 6276794
25 lines
608 B
Makefile
25 lines
608 B
Makefile
#
|
|
# To be included by platform-specific vendor Android.mk to build
|
|
# Widevine wvm static library. Sets up includes and defines the core libraries
|
|
# required.
|
|
#
|
|
include $(TOP)/vendor/widevine/proprietary/wvm/common.mk
|
|
include $(TOP)/vendor/widevine/proprietary/drmwvmplugin/oemcryptolevel.mk
|
|
|
|
LOCAL_WHOLE_STATIC_LIBRARIES := \
|
|
libwvmcommon
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libstlport \
|
|
libstagefright \
|
|
libWVStreamControlAPI_L$(LOCAL_OEMCRYPTO_LEVEL) \
|
|
libdrmframework \
|
|
libcutils \
|
|
liblog \
|
|
libutils \
|
|
libz
|
|
|
|
ifeq ($(TARGET_ARCH),x86)
|
|
LOCAL_SHARED_LIBRARIES += libdl
|
|
endif
|