[ 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
26 lines
870 B
Makefile
26 lines
870 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
LOCAL_CFLAGS := \
|
|
-DDYNAMIC_ADAPTER \
|
|
-Wno-unused \
|
|
-Wno-unused-parameter
|
|
LOCAL_C_INCLUDES := \
|
|
system/core/base/include \
|
|
system/core/include \
|
|
vendor/widevine/libwvdrmengine/cdm/core/include \
|
|
vendor/widevine/libwvdrmengine/cdm/util/include \
|
|
vendor/widevine/libwvdrmengine/level3/include \
|
|
vendor/widevine/libwvdrmengine/oemcrypto/include
|
|
LOCAL_MODULE := libwvlevel3
|
|
LOCAL_MODULE_CLASS := STATIC_LIBRARIES
|
|
LOCAL_SRC_FILES := libl3oemcrypto.cpp \
|
|
../src/generate_entropy_android.cpp \
|
|
../src/get_unique_id_android.cpp \
|
|
../src/level3_file_system_android.cpp \
|
|
../src/level3_file_system_android_factory.cpp
|
|
LOCAL_PROPRIETARY_MODULE := true
|
|
LOCAL_MODULE_TAGS := optional
|
|
LOCAL_MODULE_OWNER := widevine
|
|
LOCAL_MODULE_TARGET_ARCH := arm64
|
|
include $(BUILD_STATIC_LIBRARY)
|