-
Notifications
You must be signed in to change notification settings - Fork 343
/
Android.mk
40 lines (38 loc) · 1.5 KB
/
Android.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
ifeq ($(call my-dir)/$(TARGET_BOARD_PLATFORM),$(call project-path-for,qcom-display))
# TODO: Find a better way to separate build configs for ADP vs non-ADP devices
ifneq ($(TARGET_BOARD_AUTO),true)
ifneq ($(filter msm8084 msm8x84,$(TARGET_BOARD_PLATFORM)),)
#This is for 8084 based platforms
include $(call all-named-subdir-makefiles,msm8084)
else
ifneq ($(filter msm8974 msm8x74,$(TARGET_BOARD_PLATFORM)),)
#This is for 8974 based (and B-family) platforms
include $(call all-named-subdir-makefiles,msm8974)
else
ifneq ($(filter msm8226 msm8x26,$(TARGET_BOARD_PLATFORM)),)
include $(call all-named-subdir-makefiles,msm8226)
else
ifneq ($(filter msm8960,$(TARGET_BOARD_PLATFORM)),)
include $(call all-named-subdir-makefiles,msm8960)
else
ifneq ($(filter msm8994 msm8992,$(TARGET_BOARD_PLATFORM)),)
include $(call all-named-subdir-makefiles,msm8994)
else
ifneq ($(filter msm8909,$(TARGET_BOARD_PLATFORM)),)
include $(call all-named-subdir-makefiles,msm8909)
else
ifneq ($(filter msm8996,$(TARGET_BOARD_PLATFORM)),)
include $(call all-named-subdir-makefiles,msm8996)
else
ifneq ($(filter msmcobalt,$(TARGET_BOARD_PLATFORM)),)
include $(call all-named-subdir-makefiles,msmcobalt)
endif
endif
endif
endif
endif
endif
endif
endif
endif
endif