-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAndroid.mk
33 lines (30 loc) · 1.11 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
BT_VENDOR_PATH := $(call my-dir)
ifeq ($(BT_VENDOR_PATH),$(call project-path-for,bt-vendor))
# TODO: Find a better way to separate build configs for ADP vs non-ADP devices
ifneq ($(TARGET_BOARD_AUTO),true)
ifneq ($(filter msm8960 msm8x27 msm8974 msm8226,$(TARGET_BOARD_PLATFORM)),)
include $(call all-named-subdir-makefiles,msm8960)
else
ifneq ($(filter msm8994 msm8992,$(TARGET_BOARD_PLATFORM)),)
include $(call all-named-subdir-makefiles,msm8992)
else
ifneq ($(filter msm8996,$(TARGET_BOARD_PLATFORM)),)
include $(call all-named-subdir-makefiles,msm8996)
else
ifneq ($(filter msm8909 ,$(TARGET_BOARD_PLATFORM)),)
#For msm8909 target
include $(call all-named-subdir-makefiles,msm8909)
else
ifneq ($(filter msm8998,$(TARGET_BOARD_PLATFORM)),)
include $(call all-named-subdir-makefiles,msm8998)
else
ifneq ($(filter msmcobalt,$(TARGET_BOARD_PLATFORM)),)
include $(call all-named-subdir-makefiles,msmcobalt)
endif
endif
endif
endif
endif
endif
endif
endif