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