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.
35 lines
1.0 KiB
35 lines
1.0 KiB
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_ADDITIONAL_DEPENDENCIES += $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr
|
|
|
|
libarbitrarybytes-def := -Werror
|
|
libarbitrarybytes-def += -D_ANDROID_
|
|
|
|
libarbitrarybytes-inc := $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr/include
|
|
libarbitrarybytes-inc += $(LOCAL_PATH)/inc
|
|
libarbitrarybytes-inc += $(LOCAL_PATH)/../mm-video-v4l2/vidc/common/inc/
|
|
libarbitrarybytes-inc += $(LOCAL_PATH)/../mm-core/inc
|
|
|
|
LOCAL_MODULE := libarbitrarybytes
|
|
LOCAL_LICENSE_KINDS := SPDX-license-identifier-BSD
|
|
LOCAL_LICENSE_CONDITIONS := notice
|
|
LOCAL_NOTICE_FILE := $(LOCAL_PATH)/../LICENSE
|
|
|
|
LOCAL_PRELINK_MODULE := false
|
|
LOCAL_VENDOR_MODULE := true
|
|
|
|
LOCAL_C_INCLUDES := $(libarbitrarybytes-inc)
|
|
LOCAL_CFLAGS := $(libarbitrarybytes-def)
|
|
|
|
LOCAL_HEADER_LIBRARIES := libutils_headers
|
|
|
|
LOCAL_SHARED_LIBRARIES := liblog libcutils
|
|
|
|
LOCAL_SRC_FILES := src/frameparser.cpp
|
|
LOCAL_SRC_FILES += src/h264_utils.cpp
|
|
LOCAL_SRC_FILES += src/hevc_utils.cpp
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|