1GNSS_CFLAGS := \ 2 -Werror \ 3 -Wno-error=unused-parameter \ 4 -Wno-error=format \ 5 -Wno-error=macro-redefined \ 6 -Wno-error=reorder \ 7 -Wno-error=missing-braces \ 8 -Wno-error=self-assign \ 9 -Wno-error=enum-conversion \ 10 -Wno-error=logical-op-parentheses \ 11 -Wno-error=null-arithmetic \ 12 -Wno-error=null-conversion \ 13 -Wno-error=parentheses-equality \ 14 -Wno-error=undefined-bool-conversion \ 15 -Wno-error=tautological-compare \ 16 -Wno-error=switch \ 17 -Wno-error=date-time 18 19ifneq ($(BOARD_VENDOR_QCOM_GPS_LOC_API_HARDWARE),) 20ifneq ($(BUILD_TINY_ANDROID),true) 21 22LOCAL_PATH := $(call my-dir) 23 24include $(CLEAR_VARS) 25LOCAL_MODULE := libloc_pla_headers 26LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/android 27include $(BUILD_HEADER_LIBRARY) 28 29endif # not BUILD_TINY_ANDROID 30endif # BOARD_VENDOR_QCOM_GPS_LOC_API_HARDWARE 31