This change corrects some problems with the unit tests and make files for the libcleardrmengine. Change-Id: Iafd8aae2ecae3885ad4bbfdf9257bce6f62f98dc
34 lines
765 B
Makefile
34 lines
765 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := \
|
|
WVCreateDrmPluginFactory_test.cpp \
|
|
WVDrmPluginFactory_test.cpp \
|
|
EmptyWVCryptoPlugin.cpp \
|
|
../src/WVCreateDrmPluginFactory.cpp \
|
|
../src/WVDrmPluginFactory.cpp \
|
|
|
|
LOCAL_C_INCLUDES := \
|
|
bionic \
|
|
external/gtest/include \
|
|
external/stlport/stlport \
|
|
vendor/widevine/libclearkeydrmengine/include \
|
|
vendor/widevine/libclearkeydrmengine/crypto/include \
|
|
vendor/widevine/libwvdrmengine/oemcrypto/include \
|
|
|
|
LOCAL_STATIC_LIBRARIES := \
|
|
libgtest \
|
|
libgtest_main \
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libstlport \
|
|
liblog \
|
|
libdl \
|
|
libutils \
|
|
|
|
LOCAL_MODULE := libclearkeydrmengine_test
|
|
|
|
LOCAL_MODULE_TAGS := tests
|
|
|
|
include $(BUILD_EXECUTABLE)
|