summaryrefslogtreecommitdiffstats
path: root/Android.mk
blob: e58eb83986a376ea3eca9a4bf9f669be0087b160 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Can't have both 65xx and 60xx sensors.
ifneq ($(strip $(USE_DEVICE_SPECIFIC_SENSORS)),true)
ifneq ($(filter hammerhead, $(TARGET_DEVICE)),)
# hammerhead expects 65xx sensors.
include $(call all-named-subdir-makefiles,65xx)
else
ifneq ($(filter guppy dory, $(TARGET_DEVICE)),)
# dory and guppy expect 6515 sensors.
include $(call all-named-subdir-makefiles,6515)
else
ifneq ($(filter manta grouper tuna mako, $(TARGET_DEVICE)),)
# manta, grouper, tuna, and mako expect 60xx sensors.
include $(call all-named-subdir-makefiles,60xx)
endif
endif
endif
endif