-
Notifications
You must be signed in to change notification settings - Fork 0
/
Android.mk
140 lines (123 loc) · 2.73 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
#
# Copyright (C) 2012 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
ifeq ($(TARGET_SLSI_VARIANT),bsp)
common_exynos_dirs := \
libion_exynos \
libexynosutils \
libcec \
libcsc \
libmpp \
libhwcutils \
libhwcService \
libv4l2 \
libscaler \
libswconverter \
libvideocodec \
libstagefrighthw \
libmemtrack \
exyrngd \
rpmbd
ifeq ($(TARGET_USES_UNIVERSAL_LIBHWJPEG), true)
common_exynos_dirs += libhwjpeg
endif
ifneq ($(BOARD_USES_FIMC), true)
common_exynos_dirs += \
libgscaler
endif
ifeq ($(BOARD_USES_FIMGAPI_V5X), true)
common_exynos_dirs += \
libfimg5x
else
common_exynos_dirs += \
libfimg4x
endif
ifeq ($(BOARD_USES_EXYNOS5_COMMON_GRALLOC), true)
common_exynos_dirs += \
gralloc
endif
ifeq ($(BOARD_USES_HWC_TINY), true)
common_exynos_dirs += \
libvppdisplay_tiny
else
ifeq ($(BOARD_USES_VPP), true)
common_exynos_dirs += libvppdisplay
else
common_exynos_dirs += libdisplay
endif
endif
ifeq ($(BOARD_USES_HWC_TINY), true)
common_exynos_dirs += \
libhwc_tiny
else
ifneq ($(BOARD_TV_PRIMARY), true)
common_exynos_dirs += \
libhwc
endif
endif
ifneq ($(BOARD_USES_HWC_TINY), true)
ifeq ($(BOARD_USES_VIRTUAL_DISPLAY), true)
ifeq ($(BOARD_USES_VPP), true)
common_exynos_dirs += \
libvppvirtualdisplay
else
common_exynos_dirs += \
libvirtualdisplay
endif
endif
endif
ifeq ($(BOARD_USE_ALP_AUDIO), true)
ifeq ($(BOARD_USE_SEIREN_AUDIO), true)
common_exynos_dirs += \
libseiren
else
common_exynos_dirs += \
libsrp
endif
endif
ifeq ($(BOARD_USE_COMMON_AUDIOHAL), true)
common_exynos_dirs += \
libaudio
endif
ifneq ($(BOARD_USES_HWC_TINY), true)
ifeq ($(BOARD_HDMI_INCAPABLE), true)
common_exynos_dirs += libhdmi_dummy
else
ifeq ($(BOARD_USES_VPP), true)
common_exynos_dirs += libvpphdmi
else
ifeq ($(BOARD_USES_NEW_HDMI), true)
common_exynos_dirs += libhdmi
else
common_exynos_dirs += libhdmi_legacy
endif
endif
endif
endif
ifeq ($(BOARD_USES_FIMGAPI_V4L2), true)
common_exynos_dirs += \
libg2d
endif
ifeq ($(BOARD_BACK_CAMERA_USES_EXTERNAL_CAMERA), true)
common_exynos_dirs += \
libcamera_external
else
ifeq ($(BOARD_FRONT_CAMERA_USES_EXTERNAL_CAMERA), true)
common_exynos_dirs += \
libcamera_external
endif
endif
include $(call all-named-subdir-makefiles,$(common_exynos_dirs))
endif # TARGET_SLSI_VARIANT