(This is a merge of http://go/wvgerrit/14795) This change restores the ability to build the Widevine CDM for Android for MIPS devices. It restores the precompiled binaries for MIPS and re-adds MIPS to all makefiles. This change includes a new build of the obfuscated binaries for MIPS32r1 that were built using a MIPS device on the emulator. level3/mips/libwvlevel3.a Level3 Library Jun 19 2015 12:32:49 Bug: 19482469 Change-Id: Ifa1c299a5751f3772c42289d8333a2b8cec51f69
25 lines
617 B
Makefile
25 lines
617 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := \
|
|
src/WVCryptoPlugin.cpp \
|
|
|
|
LOCAL_C_INCLUDES := \
|
|
frameworks/av/include \
|
|
frameworks/native/include \
|
|
vendor/widevine/libwvdrmengine/cdm/core/include \
|
|
vendor/widevine/libwvdrmengine/cdm/include \
|
|
vendor/widevine/libwvdrmengine/include \
|
|
vendor/widevine/libwvdrmengine/mediacrypto/include \
|
|
vendor/widevine/libwvdrmengine/oemcrypto/include \
|
|
|
|
LOCAL_MODULE := libwvdrmcryptoplugin
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
LOCAL_MODULE_TARGET_ARCH := arm x86 mips
|
|
|
|
LOCAL_STATIC_LIBRARIES := libcrypto_static
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|