summaryrefslogtreecommitdiff
path: root/Android.mk
blob: 6b2d419364ac9af9dc235399aedaf9d38d45a6a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
ifneq ($(BOARD_VENDOR_QCOM_GPS_LOC_API_HARDWARE),)
LOCAL_PATH := $(call my-dir)

ifneq ($(filter msm8960 apq8064 ,$(TARGET_BOARD_PLATFORM)),)
    #For msm8960/apq8064 targets
    include $(call all-named-subdir-makefiles,msm8960)
else
    #For all other targets
    GPS_DIRS=core utils loc_api platform_lib_abstractions etc
    include $(call all-named-subdir-makefiles,$(GPS_DIRS))
endif #TARGET_BOARD_PLATFORM
endif #BOARD_VENDOR_QCOM_GPS_LOC_API_HARDWARE