48 lines
883 B
Makefile
48 lines
883 B
Makefile
ifneq ($(BOARD_VENDOR_QCOM_GPS_LOC_API_HARDWARE),)
|
|
ifneq ($(BUILD_TINY_ANDROID),true)
|
|
#Compile this library only for builds with the latest modem image
|
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
## Libs
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libutils \
|
|
libcutils
|
|
|
|
LOCAL_SRC_FILES += \
|
|
loc_log.cpp \
|
|
loc_cfg.cpp \
|
|
msg_q.c \
|
|
linked_list.c
|
|
|
|
LOCAL_CFLAGS += \
|
|
-fno-short-enums \
|
|
-D_ANDROID_
|
|
|
|
LOCAL_LDFLAGS += -Wl,--export-dynamic
|
|
|
|
## Includes
|
|
LOCAL_C_INCLUDES:=
|
|
|
|
LOCAL_COPY_HEADERS_TO:= gps.utils/
|
|
LOCAL_COPY_HEADERS:= \
|
|
loc_log.h \
|
|
loc_cfg.h \
|
|
log_util.h \
|
|
linked_list.h \
|
|
msg_q.h
|
|
|
|
LOCAL_MODULE := libgps.utils
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
LOCAL_PRELINK_MODULE := false
|
|
|
|
LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
endif # not BUILD_TINY_ANDROID
|
|
endif # BOARD_VENDOR_QCOM_GPS_LOC_API_HARDWARE
|
|
|