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.
41 lines
814 B
41 lines
814 B
ifneq ($(BOARD_VENDOR_QCOM_GPS_LOC_API_HARDWARE),) |
|
ifneq ($(BUILD_TINY_ANDROID),true) |
|
|
|
LOCAL_PATH := $(call my-dir) |
|
|
|
include $(CLEAR_VARS) |
|
|
|
LOCAL_MODULE := liblocation_api |
|
LOCAL_VENDOR_MODULE := true |
|
LOCAL_MODULE_OWNER := qti |
|
LOCAL_MODULE_TAGS := optional |
|
|
|
LOCAL_SHARED_LIBRARIES := \ |
|
libutils \ |
|
libcutils \ |
|
libgps.utils \ |
|
libdl \ |
|
liblog |
|
|
|
LOCAL_SRC_FILES += \ |
|
LocationAPI.cpp \ |
|
LocationAPIClientBase.cpp |
|
|
|
LOCAL_CFLAGS += \ |
|
-fno-short-enums |
|
|
|
LOCAL_C_INCLUDES:= \ |
|
$(TARGET_OUT_HEADERS)/gps.utils |
|
|
|
LOCAL_COPY_HEADERS_TO:= liblocation_api/ |
|
LOCAL_COPY_HEADERS:= \ |
|
LocationAPI.h \ |
|
LocationAPIClientBase.h \ |
|
location_interface.h |
|
|
|
LOCAL_PRELINK_MODULE := false |
|
|
|
include $(BUILD_SHARED_LIBRARY) |
|
|
|
endif # not BUILD_TINY_ANDROID |
|
endif # BOARD_VENDOR_QCOM_GPS_LOC_API_HARDWARE
|
|
|