Decouple Gnss Hidl implementation into 1.0 and 1.1 version. msmnile and later targets would use gnss hidl 1.1, and older targets would use gnss hidl 1.0 Change-Id: I31fdf932ce55a0547ff69fc3d28dae1d001e8d56 CRs-fixed: 2311903
9 lines
244 B
Makefile
9 lines
244 B
Makefile
ifneq ($(BOARD_VENDOR_QCOM_GPS_LOC_API_HARDWARE),)
|
|
LOCAL_PATH := $(call my-dir)
|
|
ifeq ($(GNSS_HIDL_VERSION),1.1)
|
|
include $(LOCAL_PATH)/1.1/Android.mk
|
|
else
|
|
include $(LOCAL_PATH)/1.0/Android.mk
|
|
endif
|
|
|
|
endif #BOARD_VENDOR_QCOM_GPS_LOC_API_HARDWARE
|