Earlier this identification was done in loc.cpp This change moves that to a separate utility. Also included is a change to not return a handle to the GPS interface if the target is found to be MPQ8064. This change is a re-cherry-pick from change id - I98d5619d2e6e63711a9b56f0af2b3ddd27372871 Change-Id: I058d206c37245b44f1cf74d6065e7ce46f50baf7 CRs-Fixed: 418009
49 lines
922 B
Makefile
49 lines
922 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 \
|
|
loc_target.cpp
|
|
|
|
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 \
|
|
loc_target.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
|
|
|