Files
android/proprietary/streamcontrol/test/Android.mk
Jean-Baptiste Queru dd1da8931d Hack a build fix - do not merge
Change-Id: Idc4ac3ae236ed6465567c535d1ea20b64f63eebf
2012-08-31 09:55:24 -07:00

42 lines
980 B
Makefile

ifneq ($(filter arm x86,$(TARGET_ARCH)),)
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
include $(TOP)/vendor/widevine/proprietary/drmwvmplugin/oemcryptolevel.mk
LOCAL_SRC_FILES:= \
TestPlayer.cpp
LOCAL_MODULE_TAGS := tests
LOCAL_C_INCLUDES += \
bionic \
vendor/widevine/proprietary/include \
external/stlport/stlport \
vendor/widevine/proprietary/streamcontrol/include \
vendor/widevine/proprietary/drmwvmplugin/include \
frameworks/av/drm/libdrmframework/include \
frameworks/av/drm/libdrmframework/plugins/common/include
ifeq ($(TARGET_ARCH),x86)
LOCAL_C_INCLUDES += $(TOP)/system/core/include/arch/linux-x86
endif
LOCAL_SHARED_LIBRARIES := \
libstlport \
libdrmframework \
liblog \
libutils \
libz \
libcutils \
libdl \
libWVStreamControlAPI_L$(LOCAL_OEMCRYPTO_LEVEL) \
libwvdrm_L$(LOCAL_OEMCRYPTO_LEVEL)
LOCAL_MODULE:=test-wvplayer_L$(LOCAL_OEMCRYPTO_LEVEL)
#include $(BUILD_EXECUTABLE)
endif