c85904857b
* 'lineage-16.0' of http://www.github.com/LineageOS/android_device_samsung_msm8974-common: msm8974-common: Build common legacy gnss hal msm8974-common: Switch to GNSS HIDL HAL msm8974-common: gps: Fix for buffer overrun crash at copying nmea string msm8974-common: gps: Replacing copy headers with header libraries msm8974-common: gps: Don't rely on transitively included headers msm8974-common: gps: Remove nmea log msm8974-common: gps: Return the correct length of nmea sentence msm8974-common: gps: Default apn ip type to ipv4 msm8974-common: gps: Suppress unused-parameter warnings msm8974-common: gps: Remove owner of gps hal modules Change-Id: I910806396d54c33727ef3b807404d71786aa74e6
52 lines
1.1 KiB
Makefile
52 lines
1.1 KiB
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
## Libs
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libutils \
|
|
libcutils \
|
|
liblog \
|
|
libprocessgroup
|
|
|
|
LOCAL_SRC_FILES += \
|
|
loc_log.cpp \
|
|
loc_cfg.cpp \
|
|
msg_q.c \
|
|
linked_list.c \
|
|
loc_target.cpp \
|
|
platform_lib_abstractions/elapsed_millis_since_boot.cpp \
|
|
LocHeap.cpp \
|
|
LocTimer.cpp \
|
|
LocThread.cpp \
|
|
MsgTask.cpp \
|
|
loc_misc_utils.cpp
|
|
|
|
# Flag -std=c++11 is not accepted by compiler when LOCAL_CLANG is set to true
|
|
LOCAL_CFLAGS += \
|
|
-fno-short-enums \
|
|
-D_ANDROID_ \
|
|
-Wno-unused-parameter
|
|
|
|
ifeq ($(TARGET_BUILD_VARIANT),user)
|
|
LOCAL_CFLAGS += -DTARGET_BUILD_VARIANT_USER
|
|
endif
|
|
|
|
LOCAL_LDFLAGS += -Wl,--export-dynamic
|
|
|
|
## Includes
|
|
LOCAL_C_INCLUDES:= \
|
|
$(LOCAL_PATH)/platform_lib_abstractions
|
|
|
|
LOCAL_MODULE := libgps.utils
|
|
LOCAL_PROPRIETARY_MODULE := true
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := libgps.utils_headers
|
|
LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH) $(LOCAL_PATH)/platform_lib_abstractions
|
|
include $(BUILD_HEADER_LIBRARY)
|