Merge from widevine repo of http://go/wvgerrit/17223 This CL turns off the mips64 bit build for widevine. This is because the level 3 mips32 library does not build and run correctly for a 64 bit target. b/27786231 Change-Id: I3388d9ebc80ae3cf477a8a54adfd1f22dfac4dda
15 lines
453 B
Makefile
15 lines
453 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := libwvlevel3
|
|
LOCAL_MODULE_CLASS := STATIC_LIBRARIES
|
|
LOCAL_MODULE_SUFFIX := .a
|
|
LOCAL_SRC_FILES := $(LOCAL_MODULE)$(LOCAL_MODULE_SUFFIX)
|
|
LOCAL_PROPRIETARY_MODULE := true
|
|
LOCAL_MODULE_TAGS := optional
|
|
LOCAL_MODULE_OWNER := widevine
|
|
LOCAL_MODULE_TARGET_ARCH := mips
|
|
# mips 32 bit library does not run on 64 bit chips.
|
|
LOCAL_MODULE_UNSUPPORTED_TARGET_ARCH := mips64
|
|
include $(BUILD_PREBUILT)
|