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.
30 lines
657 B
30 lines
657 B
#
|
|
# RockChip Camera HAL
|
|
#
|
|
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES +=\
|
|
source/dct_assert.c\
|
|
source/list.c\
|
|
source/queue.c\
|
|
source/slist.c\
|
|
source/trace.c\
|
|
source/utl_fixfloat.c
|
|
|
|
LOCAL_C_INCLUDES += \
|
|
$(LOCAL_PATH)/include\
|
|
$(LOCAL_PATH)/../include\
|
|
|
|
|
|
LOCAL_CFLAGS += -Wno-error=unused-function -Wno-array-bounds
|
|
LOCAL_CFLAGS += -DLINUX -D_FILE_OFFSET_BITS=64 -DHAS_STDINT_H -DENABLE_ASSERT
|
|
#LOCAL_MODULE_RELATIVE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/hw
|
|
LOCAL_MODULE:= libisp_ebase
|
|
ifeq (1,$(strip $(shell expr $(PLATFORM_SDK_VERSION) \>= 26)))
|
|
LOCAL_PROPRIETARY_MODULE := true
|
|
endif
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|