* 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
35 lines
870 B
Makefile
35 lines
870 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
TestPlayer.cpp
|
|
|
|
LOCAL_MODULE_TAGS := tests
|
|
|
|
LOCAL_C_INCLUDES += \
|
|
vendor/widevine/proprietary/include \
|
|
vendor/widevine/proprietary/streamcontrol/include \
|
|
vendor/widevine/proprietary/drmwvmplugin/include \
|
|
frameworks/av/drm/libdrmframework/include \
|
|
frameworks/av/drm/libdrmframework/plugins/common/include
|
|
|
|
LOCAL_C_INCLUDES_x86 += $(TOP)/system/core/include/arch/linux-x86
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libdrmframework \
|
|
liblog \
|
|
libutils \
|
|
libz \
|
|
libcutils \
|
|
libdl \
|
|
libWVStreamControlAPI_L$(BOARD_WIDEVINE_OEMCRYPTO_LEVEL) \
|
|
libwvdrm_L$(BOARD_WIDEVINE_OEMCRYPTO_LEVEL)
|
|
|
|
LOCAL_MODULE:=test-wvplayer_L$(BOARD_WIDEVINE_OEMCRYPTO_LEVEL)
|
|
|
|
LOCAL_MODULE_TARGET_ARCH := $(WIDEVINE_SUPPORTED_ARCH)
|
|
LOCAL_MULTILIB := 32
|
|
|
|
include $(BUILD_EXECUTABLE)
|