summaryrefslogtreecommitdiff
path: root/Android.mk
blob: ee290a597ba2ba1a9b836e29096ab887d1bee3e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Can't have both 65xx and 60xx sensors.
ifneq ($(filter hammerhead, $(TARGET_DEVICE)),)
  # hammerhead expects 65xx sensors.
  include $(call all-named-subdir-makefiles,65xx)
else
ifneq ($(filter guppy dory platina, $(TARGET_DEVICE)),)
# dory, guppy, and platina expect 6515 sensors.
include $(call all-named-subdir-makefiles,6515)
else
# manta expects 60xx sensors.
include $(call all-named-subdir-makefiles,60xx)
endif
endif