You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
554 B
26 lines
554 B
LOCAL_PATH := $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
LOCAL_SRC_FILES := SEC_OMX_Component_Register.c \
|
|
SEC_OMX_Core.c
|
|
|
|
LOCAL_PRELINK_MODULE := false
|
|
LOCAL_MODULE := libSEC_OMX_Core
|
|
|
|
LOCAL_CFLAGS :=
|
|
|
|
LOCAL_ARM_MODE := arm
|
|
|
|
LOCAL_STATIC_LIBRARIES := libsecosal libsecbasecomponent
|
|
LOCAL_SHARED_LIBRARIES := libc libdl libcutils libutils \
|
|
libSEC_OMX_Resourcemanager
|
|
|
|
LOCAL_C_INCLUDES := $(SEC_OMX_INC)/khronos \
|
|
$(SEC_OMX_INC)/sec \
|
|
$(SEC_OMX_TOP)/osal \
|
|
$(SEC_OMX_TOP)/component/common
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
|
|
|