[ Merge of http://go/wvgerrit/70203 ] The earlier property_get() method had a limitation on property length. Properties of some new devices exceed that length. An error message is returned rather than a truncated string. Replace its use with android::base::GetProperty() which does not have a length limitation. Bug: 115358798 Test: WV unit/integration tests Change-Id: I46ce9a7e77bcd031225d0082f83c57d484fe5405
43 lines
1.0 KiB
Makefile
43 lines
1.0 KiB
Makefile
# ----------------------------------------------------------------
|
|
# Builds libvtswidevine.so
|
|
#
|
|
LOCAL_PATH := $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_C_INCLUDES := \
|
|
hardware/interfaces/drm/1.0/vts/functional \
|
|
vendor/widevine/libwvdrmengine/cdm/include \
|
|
vendor/widevine/libwvdrmengine/cdm/core/include \
|
|
vendor/widevine/libwvdrmengine/cdm/core/test \
|
|
vendor/widevine/libwvdrmengine/cdm/util/include \
|
|
system/libhidl/base/include \
|
|
system/core/base/include \
|
|
system/libvintf/include \
|
|
|
|
LOCAL_SRC_FILES := \
|
|
factory.cpp \
|
|
vts_module.cpp \
|
|
../../cdm/core/test/url_request.cpp \
|
|
../../cdm/core/test/license_request.cpp \
|
|
../../cdm/core/test/http_socket.cpp \
|
|
|
|
LOCAL_STATIC_LIBRARIES := \
|
|
libgtest \
|
|
libcdm \
|
|
libcdm_utils \
|
|
libcrypto
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libbase \
|
|
liblog \
|
|
libssl \
|
|
libutils \
|
|
|
|
LOCAL_MODULE := libvtswidevine
|
|
LOCAL_MODULE_RELATIVE_PATH := drm-vts-test-libs
|
|
LOCAL_MODULE_TAGS := optional
|
|
LOCAL_PROPRIETARY_MODULE := true
|
|
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|