Arif Ali
2629ed2783
* Added tytung libgps 1.9 NMEA * Added cedesmith libhtc_ril_wrapper 0.8b4 * Added tablet tweaks * Added various changes to config.xml for framework core * removed recovery.fstab.magldr, as it is not required * Fixed permissiond of /dev/smd27 for gps Change-Id: I6afc963134a19b759f1a43d81b5e8b7d01c5553c
26 lines
429 B
Makefile
26 lines
429 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
|
|
ifneq ($(TARGET_SIMULATOR),true)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
LOCAL_MODULE := libgps
|
|
|
|
LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)
|
|
|
|
LOCAL_SHARED_LIBRARIES := libutils libcutils librpc
|
|
|
|
LOCAL_C_INCLUDES := \
|
|
$(TARGET_OUT_HEADERS)/librpc
|
|
|
|
LOCAL_SRC_FILES := \
|
|
leo-gps.c \
|
|
leo-gps-rpc.c \
|
|
time.cpp \
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
|
|
endif # !TARGET_SIMULATOR
|