Files
android/proprietary/wvm/test/Android.mk
Dan Albert 93e1acb958 Remove Widevine Classic Dependency on STLPort
* 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
2015-02-20 14:33:42 -08:00

29 lines
605 B
Makefile

LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_SRC_FILES:= \
Testlibwvm.cpp
LOCAL_C_INCLUDES+= \
vendor/widevine/proprietary/include \
frameworks/av/media/libstagefright
LOCAL_C_INCLUDES_x86 += $(TOP)/system/core/include/arch/linux-x86
LOCAL_SHARED_LIBRARIES := \
libdrmframework \
libstagefright \
liblog \
libutils \
libz \
libdl
LOCAL_MODULE:=test-libwvm
LOCAL_MODULE_TAGS := tests
LOCAL_MODULE_TARGET_ARCH := $(WIDEVINE_SUPPORTED_ARCH)
include $(BUILD_EXECUTABLE)