* Move some libraries that were being built with the NDK but statically included into platform code off the NDK. * Update the prebuilt Widevine Classic binaries to 4.5.0.10131. Bug: 15193147 Change-Id: I93f356a97c9c92c1f14c00e7420b941b1bb4357e
25 lines
596 B
Makefile
25 lines
596 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
|
|
|
|
ifndef BOARD_WIDEVINE_OEMCRYPTO_LEVEL
|
|
$(error BOARD_WIDEVINE_OEMCRYPTO_LEVEL not defined!)
|
|
endif
|
|
|
|
LOCAL_WHOLE_STATIC_LIBRARIES := \
|
|
libwvmcommon
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libstagefright \
|
|
libWVStreamControlAPI_L$(BOARD_WIDEVINE_OEMCRYPTO_LEVEL) \
|
|
libdrmframework \
|
|
libcutils \
|
|
liblog \
|
|
libutils \
|
|
libz
|
|
|
|
LOCAL_SHARED_LIBRARIES_x86 += libdl
|