* 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
26 lines
623 B
Makefile
26 lines
623 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
include $(TOP)/vendor/widevine/proprietary/wvm/common.mk
|
|
|
|
ifeq ($(BOARD_WIDEVINE_OEMCRYPTO_LEVEL),1)
|
|
LOCAL_CFLAGS := -DREQUIRE_SECURE_BUFFERS
|
|
endif
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
WVMLogging.cpp \
|
|
WVMExtractorImpl.cpp \
|
|
WVMFileSource.cpp \
|
|
WVMMediaSource.cpp \
|
|
WVMInfoListener.cpp
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libstagefright \
|
|
libstagefright_foundation
|
|
|
|
LOCAL_MODULE := libwvmcommon
|
|
LOCAL_MODULE_TAGS := optional
|
|
LOCAL_MODULE_TARGET_ARCH := $(WIDEVINE_SUPPORTED_ARCH)
|
|
LOCAL_MULTILIB := 32
|
|
include $(BUILD_STATIC_LIBRARY)
|