Provide a default liboemcrypto called liboemstub for devices that do not have widevine OEM integration but still build the wv libs.

Change-Id: Iaa577416f3996677af234738ac0cd3344bbee9bc
This commit is contained in:
Jeffrey Tinker
2011-03-18 10:55:30 -07:00
parent dac957507c
commit 55b05dab92
9 changed files with 54 additions and 14 deletions

View File

@@ -0,0 +1,25 @@
ifeq ($(TARGET_ARCH),arm)
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
include $(CLEAR_VARS)
LOCAL_MODULE := libwvocs
LOCAL_SRC_FILES := \
libwvocs.a
LOCAL_MODULE_TAGS := optional
LOCAL_MODULE_SUFFIX := .a
LOCAL_MODULE_CLASS := STATIC_LIBRARIES
include $(BUILD_PREBUILT)
include $(CLEAR_VARS)
LOCAL_MODULE := liboemstub
LOCAL_SRC_FILES := \
liboemstub.a
LOCAL_MODULE_TAGS := optional
LOCAL_MODULE_SUFFIX := .a
LOCAL_MODULE_CLASS := STATIC_LIBRARIES
include $(BUILD_PREBUILT)
endif

Binary file not shown.

Binary file not shown.