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.
22 lines
361 B
22 lines
361 B
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
ifeq ($(BOARD_USES_FIMGAPI),true)
|
|
|
|
LOCAL_C_INCLUDES += $(LOCAL_PATH)/../include
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
FimgApi.cpp \
|
|
FimgC210.cpp
|
|
|
|
LOCAL_SHARED_LIBRARIES:= liblog libutils libbinder
|
|
|
|
LOCAL_MODULE:= libfimg
|
|
|
|
LOCAL_PRELINK_MODULE := false
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
|
|
endif
|
|
|