blob: 7b6afe4ab535c77708c161f9ea90a71f3f66d8fe [file] [log] [blame]
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001ifeq ($(strip $(BOARD_USES_ALSA_AUDIO)),true)
2
3LOCAL_PATH := $(call my-dir)
4
5include $(CLEAR_VARS)
6
7LOCAL_ARM_MODE := arm
8
Ajay Dudanibe3335a2013-08-19 18:47:21 -07009AUDIO_PLATFORM := $(TARGET_BOARD_PLATFORM)
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -070010
Venkataraman Nerellapallib8689ec2017-05-04 11:55:29 +053011ifneq ($(filter msm8974 msm8226 msm8610 apq8084 msm8994 msm8992 msm8996 msm8998 apq8098_latv sdm845,$(TARGET_BOARD_PLATFORM)),)
Ajay Dudanibe3335a2013-08-19 18:47:21 -070012 # B-family platform uses msm8974 code base
13 AUDIO_PLATFORM = msm8974
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -070014 MULTIPLE_HW_VARIANTS_ENABLED := true
Mingming Yin8e5a4f62013-10-07 15:23:41 -070015ifneq ($(filter msm8610,$(TARGET_BOARD_PLATFORM)),)
16 LOCAL_CFLAGS := -DPLATFORM_MSM8610
17endif
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -070018ifneq ($(filter msm8226,$(TARGET_BOARD_PLATFORM)),)
19 LOCAL_CFLAGS := -DPLATFORM_MSM8x26
20endif
Vidyakumar Athotad9d9ff32013-11-13 11:46:52 -080021ifneq ($(filter apq8084,$(TARGET_BOARD_PLATFORM)),)
22 LOCAL_CFLAGS := -DPLATFORM_APQ8084
23endif
Mingming Yin0e1b2902014-05-19 18:20:59 -070024ifneq ($(filter msm8994,$(TARGET_BOARD_PLATFORM)),)
25 LOCAL_CFLAGS := -DPLATFORM_MSM8994
26endif
Fred Oh68ad1d32014-12-09 13:08:07 -080027ifneq ($(filter msm8992,$(TARGET_BOARD_PLATFORM)),)
28 LOCAL_CFLAGS := -DPLATFORM_MSM8994
29endif
Mingming Yin89c6a7f2015-03-24 11:56:14 -070030ifneq ($(filter msm8996,$(TARGET_BOARD_PLATFORM)),)
31 LOCAL_CFLAGS := -DPLATFORM_MSM8996
Banajit Goswami22582e72014-10-15 18:29:34 -070032endif
Venkataraman Nerellapallib8689ec2017-05-04 11:55:29 +053033ifneq ($(filter msm8998 apq8098_latv,$(TARGET_BOARD_PLATFORM)),)
Ben Romberger22d41232016-11-16 14:55:25 -080034 LOCAL_CFLAGS := -DPLATFORM_MSM8998
Banajit Goswami4c0dff22016-03-04 18:31:22 -080035endif
Soumild9f5bfa2017-04-04 19:31:22 -070036ifneq ($(filter sdm845,$(TARGET_BOARD_PLATFORM)),)
Garmond Leung986024b2017-04-28 14:41:10 -070037 LOCAL_CFLAGS := -DPLATFORM_SDM845
Xiaoyu Ye0afc9232017-03-28 21:31:22 -070038endif
Ajay Dudanibe3335a2013-08-19 18:47:21 -070039endif
40
Arusha Goyalfda29152016-12-26 10:53:39 +053041ifneq ($(filter msm8916 msm8909 msm8952 msm8937 thorium msm8953 msmgold sdm660,$(TARGET_BOARD_PLATFORM)),)
Naresh Tannirudb72d1e2014-03-05 17:33:47 +053042 AUDIO_PLATFORM = msm8916
43 MULTIPLE_HW_VARIANTS_ENABLED := true
44 LOCAL_CFLAGS := -DPLATFORM_MSM8916
padarshr04e74812014-09-17 13:34:31 +053045ifneq ($(filter msm8909,$(TARGET_BOARD_PLATFORM)),)
Dhananjay Kumar2bb2fc12014-07-11 19:14:23 +053046 LOCAL_CFLAGS := -DPLATFORM_MSM8909
47endif
Arusha Goyalfda29152016-12-26 10:53:39 +053048ifneq ($(filter sdm660,$(TARGET_BOARD_PLATFORM)),)
Dhananjay Kumard3ab9f42016-07-20 17:05:47 +053049 LOCAL_CFLAGS := -DPLATFORM_MSMFALCON
50endif
Naresh Tannirudb72d1e2014-03-05 17:33:47 +053051endif
Naresh Tanniru8b919ac2014-01-30 19:12:53 +053052
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -080053LOCAL_SRC_FILES := \
54 audio_hw.c \
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -070055 voice.c \
Ben Romberger61764e32014-01-10 13:49:02 -080056 platform_info.c \
Vignesh Kulothungan55396882017-04-20 14:37:02 -070057 $(AUDIO_PLATFORM)/platform.c \
58 acdb.c
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -080059
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -070060LOCAL_SRC_FILES += audio_extn/audio_extn.c \
61 audio_extn/utils.c
Vidyakumar Athota21b3bb92014-04-25 11:08:08 -070062LOCAL_C_INCLUDES += $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr/include
Asish Bhattacharya0b9bfb02017-07-15 08:39:36 +053063LOCAL_C_INCLUDES += $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr/techpack/audio/include
Vidyakumar Athota21b3bb92014-04-25 11:08:08 -070064LOCAL_ADDITIONAL_DEPENDENCIES += $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr
Divya Narayanan Poojary8fd98c82017-07-03 11:17:08 +053065LOCAL_CFLAGS += -DUSE_VENDOR_EXTN
Apoorv Raghuvanshi9eaf94e2013-10-04 16:13:44 -070066
Mingming Yine5bf8372015-02-26 15:03:10 -080067ifeq ($(strip $(AUDIO_FEATURE_ENABLED_HDMI_EDID)),true)
Mingming Yin497419f2015-07-01 16:57:32 -070068 LOCAL_CFLAGS += -DHDMI_EDID
Pradnya Chaphekar4403bd72014-09-09 09:50:01 -070069 LOCAL_SRC_FILES += edid.c
70endif
71
Mingming Yin08c7e312015-03-16 18:10:58 -070072ifeq ($(strip $(AUDIO_USE_LL_AS_PRIMARY_OUTPUT)),true)
73 LOCAL_CFLAGS += -DUSE_LL_AS_PRIMARY_OUTPUT
74endif
75
Mingming Yina6dad602014-05-16 12:10:55 -070076ifeq ($(strip $(AUDIO_FEATURE_ENABLED_PCM_OFFLOAD)),true)
Mingming Yin67e34512014-04-03 17:47:22 -070077 LOCAL_CFLAGS += -DPCM_OFFLOAD_ENABLED
78endif
79
Mingming Yina6dad602014-05-16 12:10:55 -070080ifeq ($(strip $(AUDIO_FEATURE_ENABLED_ANC_HEADSET)),true)
Apoorv Raghuvanshi9eaf94e2013-10-04 16:13:44 -070081 LOCAL_CFLAGS += -DANC_HEADSET_ENABLED
82endif
83
Venkata Narendra Kumar Gutta4bd09d02016-01-29 15:31:04 +053084ifeq ($(strip $(AUDIO_FEATURE_ENABLED_HIFI_AUDIO)),true)
85 LOCAL_CFLAGS += -DHIFI_AUDIO_ENABLED
86endif
87
Srinivas Julakanti1ca769a2017-01-04 23:18:08 -080088ifeq ($(strip $(AUDIO_FEATURE_ENABLED_RAS)),true)
89 LOCAL_CFLAGS += -DRAS_ENABLED
90endif
91
Banajit Goswami20cdd212015-09-11 01:11:30 -070092ifeq ($(strip $(AUDIO_FEATURE_ENABLED_VBAT_MONITOR)),true)
93 LOCAL_CFLAGS += -DVBAT_MONITOR_ENABLED
94endif
95
Mingming Yina6dad602014-05-16 12:10:55 -070096ifeq ($(strip $(AUDIO_FEATURE_ENABLED_FLUENCE)),true)
Venkata Narendra Kumar Gutta88fd0bc2014-03-27 19:47:56 +053097 LOCAL_CFLAGS += -DFLUENCE_ENABLED
98endif
99
Mingming Yina6dad602014-05-16 12:10:55 -0700100ifeq ($(strip $(AUDIO_FEATURE_ENABLED_PROXY_DEVICE)),true)
Apoorv Raghuvanshi9eaf94e2013-10-04 16:13:44 -0700101 LOCAL_CFLAGS += -DAFE_PROXY_ENABLED
102endif
103
Sudheer Papothi390bcf32014-12-04 01:25:17 +0530104ifeq ($(strip $(AUDIO_FEATURE_ENABLED_KPI_OPTIMIZE)),true)
105 LOCAL_CFLAGS += -DKPI_OPTIMIZE_ENABLED
106endif
107
Mingming Yin12125e82015-10-26 20:40:36 -0700108ifeq ($(strip $(AUDIO_FEATURE_ENABLED_FM_POWER_OPT)),true)
109 LOCAL_CFLAGS += -DFM_POWER_OPT
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -0700110 LOCAL_SRC_FILES += audio_extn/fm.c
111endif
112
Kuirong Wang357e0b12016-07-06 00:29:15 -0700113ifeq ($(strip $(AUDIO_FEATURE_ENABLED_USB_TUNNEL_AUDIO)),true)
Apoorv Raghuvanshi5792d4b2013-10-07 18:40:05 -0700114 LOCAL_CFLAGS += -DUSB_HEADSET_ENABLED
115 LOCAL_SRC_FILES += audio_extn/usb.c
116endif
Mingming Yina6dad602014-05-16 12:10:55 -0700117
118ifeq ($(strip $(AUDIO_FEATURE_ENABLED_HFP)),true)
Vimal Puthanveed5b4d3f12013-11-05 15:57:39 -0800119 LOCAL_CFLAGS += -DHFP_ENABLED
120 LOCAL_SRC_FILES += audio_extn/hfp.c
121endif
Apoorv Raghuvanshi5792d4b2013-10-07 18:40:05 -0700122
Mingming Yina6dad602014-05-16 12:10:55 -0700123ifeq ($(strip $(AUDIO_FEATURE_ENABLED_CUSTOMSTEREO)),true)
Jitendra Singh Naruka9a6a8d42014-02-10 20:07:12 -0800124 LOCAL_CFLAGS += -DCUSTOM_STEREO_ENABLED
125endif
126
Mingming Yina6dad602014-05-16 12:10:55 -0700127ifeq ($(strip $(AUDIO_FEATURE_ENABLED_SSR)),true)
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -0700128 LOCAL_CFLAGS += -DSSR_ENABLED
129 LOCAL_SRC_FILES += audio_extn/ssr.c
Shiv Maliyappanahalli5a10aea2015-07-02 10:36:23 -0700130 LOCAL_C_INCLUDES += $(TARGET_OUT_HEADERS)/mm-audio/surround_sound_3mic/
Nagender Telkarca2b4942014-03-24 12:25:42 -0600131 LOCAL_C_INCLUDES += $(TARGET_OUT_HEADERS)/common/inc/
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -0700132endif
133
Mingming Yina6dad602014-05-16 12:10:55 -0700134ifeq ($(strip $(AUDIO_FEATURE_ENABLED_MULTI_VOICE_SESSIONS)),true)
Shiv Maliyappanahalli303f51d2013-10-25 16:24:27 -0700135 LOCAL_CFLAGS += -DMULTI_VOICE_SESSION_ENABLED
136 LOCAL_SRC_FILES += voice_extn/voice_extn.c
Vidyakumar Athota21b3bb92014-04-25 11:08:08 -0700137
Mingming Yina6dad602014-05-16 12:10:55 -0700138ifeq ($(strip $(AUDIO_FEATURE_ENABLED_INCALL_MUSIC)),true)
Shiv Maliyappanahalli303f51d2013-10-25 16:24:27 -0700139 LOCAL_CFLAGS += -DINCALL_MUSIC_ENABLED
140endif
Mingming Yina6dad602014-05-16 12:10:55 -0700141ifeq ($(strip $(AUDIO_FEATURE_ENABLED_COMPRESS_VOIP)),true)
Narsinga Rao Chella05573b72013-11-15 15:21:40 -0800142 LOCAL_CFLAGS += -DCOMPRESS_VOIP_ENABLED
143 LOCAL_SRC_FILES += voice_extn/compress_voip.c
144endif
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -0700145
146endif
147
Mingming Yina6dad602014-05-16 12:10:55 -0700148ifeq ($(strip $(AUDIO_FEATURE_ENABLED_EXTN_FORMATS)),true)
Satya Krishna Pindiproli5d82d012015-08-12 18:21:25 +0530149LOCAL_CFLAGS += -DAUDIO_EXTN_FORMATS_ENABLED
Gopikrishnaiah Anandanf538cef2013-10-28 14:06:03 -0700150endif
Shiv Maliyappanahalli303f51d2013-10-25 16:24:27 -0700151
Anish Kumard80a1392014-07-16 16:18:51 -0700152ifeq ($(strip $(AUDIO_FEATURE_ENABLED_SPKR_PROTECTION)),true)
Gopikrishnaiah Anandanf538cef2013-10-28 14:06:03 -0700153 LOCAL_CFLAGS += -DSPKR_PROT_ENABLED
154 LOCAL_SRC_FILES += audio_extn/spkr_protection.c
Gopikrishnaiah Anandanf538cef2013-10-28 14:06:03 -0700155endif
Shiv Maliyappanahalli303f51d2013-10-25 16:24:27 -0700156
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -0700157ifdef MULTIPLE_HW_VARIANTS_ENABLED
158 LOCAL_CFLAGS += -DHW_VARIANTS_ENABLED
159 LOCAL_SRC_FILES += $(AUDIO_PLATFORM)/hw_info.c
160endif
161
Mingming Yina6dad602014-05-16 12:10:55 -0700162ifeq ($(strip $(AUDIO_FEATURE_ENABLED_COMPRESS_CAPTURE)),true)
Mingming Yine62d7842013-10-25 16:26:03 -0700163 LOCAL_CFLAGS += -DCOMPRESS_CAPTURE_ENABLED
164 LOCAL_SRC_FILES += audio_extn/compress_capture.c
165endif
166
Jitendra Naruka1b6513f2014-11-22 19:34:13 -0800167ifeq ($(strip $(AUDIO_FEATURE_ENABLED_DTS_EAGLE)),true)
168 LOCAL_CFLAGS += -DDTS_EAGLE
169 LOCAL_SRC_FILES += audio_extn/dts_eagle.c
170endif
171
Mingming Yina6dad602014-05-16 12:10:55 -0700172ifeq ($(strip $(DOLBY_DDP)),true)
Mingming Yin90310102013-11-13 16:57:00 -0800173 LOCAL_CFLAGS += -DDS1_DOLBY_DDP_ENABLED
Subhash Chandra Bose Naripeddy7690c562013-12-14 00:34:53 -0800174 LOCAL_SRC_FILES += audio_extn/dolby.c
Mingming Yin90310102013-11-13 16:57:00 -0800175endif
176
Pradnya Chaphekar73e2e8b2015-05-01 02:18:17 -0700177ifeq ($(strip $(DS1_DOLBY_DAP)),true)
Subhash Chandra Bose Naripeddy7690c562013-12-14 00:34:53 -0800178 LOCAL_CFLAGS += -DDS1_DOLBY_DAP_ENABLED
Mingming Yina6dad602014-05-16 12:10:55 -0700179ifneq ($(strip $(DOLBY_DDP)),true)
Subhash Chandra Bose Naripeddy7690c562013-12-14 00:34:53 -0800180 LOCAL_SRC_FILES += audio_extn/dolby.c
181endif
182endif
183
Mingming Yin3ee55c62014-08-04 14:23:35 -0700184ifeq ($(strip $(AUDIO_FEATURE_ENABLED_EXTN_FLAC_DECODER)),true)
Satya Krishna Pindiproli70471602015-04-24 19:12:43 +0530185 LOCAL_CFLAGS += -DFLAC_OFFLOAD_ENABLED
186 LOCAL_CFLAGS += -DCOMPRESS_METADATA_NEEDED
187endif
188
189ifeq ($(strip $(AUDIO_FEATURE_ENABLED_VORBIS_OFFLOAD)),true)
190 LOCAL_CFLAGS += -DVORBIS_OFFLOAD_ENABLED
191 LOCAL_CFLAGS += -DCOMPRESS_METADATA_NEEDED
192
193endif
194
195ifeq ($(strip $(AUDIO_FEATURE_ENABLED_WMA_OFFLOAD)),true)
196 LOCAL_CFLAGS += -DWMA_OFFLOAD_ENABLED
197 LOCAL_CFLAGS += -DCOMPRESS_METADATA_NEEDED
198endif
199
200ifeq ($(strip $(AUDIO_FEATURE_ENABLED_ALAC_OFFLOAD)),true)
201 LOCAL_CFLAGS += -DALAC_OFFLOAD_ENABLED
202 LOCAL_CFLAGS += -DCOMPRESS_METADATA_NEEDED
203endif
204
205ifeq ($(strip $(AUDIO_FEATURE_ENABLED_APE_OFFLOAD)),true)
206 LOCAL_CFLAGS += -DAPE_OFFLOAD_ENABLED
207 LOCAL_CFLAGS += -DCOMPRESS_METADATA_NEEDED
Mingming Yin3ee55c62014-08-04 14:23:35 -0700208endif
209
Vidyakumar Athotac1d39c92015-02-25 15:14:26 -0800210ifeq ($(strip $(AUDIO_FEATURE_ENABLED_PCM_OFFLOAD_24)),true)
211 LOCAL_CFLAGS += -DPCM_OFFLOAD_ENABLED_24
212endif
213
Manish Dewangana6fc5442015-08-24 20:30:31 +0530214ifeq ($(strip $(AUDIO_FEATURE_ENABLED_AAC_ADTS_OFFLOAD)),true)
215 LOCAL_CFLAGS += -DAAC_ADTS_OFFLOAD_ENABLED
216endif
217
Lior Barenboim0b61bc72014-05-13 13:01:37 +0300218ifeq ($(strip $(AUDIO_FEATURE_ENABLED_DEV_ARBI)),true)
219 LOCAL_CFLAGS += -DDEV_ARBI_ENABLED
220 LOCAL_SRC_FILES += audio_extn/dev_arbi.c
221endif
222
Naresh Tanniruc0517bc2014-10-26 15:30:55 +0530223ifeq ($(strip $(AUDIO_FEATURE_ENABLED_RECORD_PLAY_CONCURRENCY)),true)
224 LOCAL_CFLAGS += -DRECORD_PLAY_CONCURRENCY
225endif
226
Ashish Jain8ec50472014-10-16 13:56:28 +0530227ifeq ($(strip $(AUDIO_FEATURE_ENABLED_ACDB_LICENSE)), true)
228 LOCAL_CFLAGS += -DDOLBY_ACDB_LICENSE
229endif
230
Pradnya Chaphekar8a9dcd82014-09-09 09:49:10 -0700231ifeq ($(strip $(AUDIO_FEATURE_ENABLED_DS2_DOLBY_DAP)),true)
232 LOCAL_CFLAGS += -DDS2_DOLBY_DAP_ENABLED
Pradnya Chaphekar73e2e8b2015-05-01 02:18:17 -0700233 LOCAL_CFLAGS += -DDS1_DOLBY_DDP_ENABLED
Pradnya Chaphekar8a9dcd82014-09-09 09:49:10 -0700234ifneq ($(strip $(DOLBY_DDP)),true)
Pradnya Chaphekar73e2e8b2015-05-01 02:18:17 -0700235 ifneq ($(strip $(DS1_DOLBY_DAP)),true)
Pradnya Chaphekar8a9dcd82014-09-09 09:49:10 -0700236 LOCAL_SRC_FILES += audio_extn/dolby.c
237 endif
238endif
239endif
240
Pradnya Chaphekar80a8cfb2014-10-20 16:17:01 -0700241ifeq ($(strip $(AUDIO_FEATURE_ENABLED_HDMI_PASSTHROUGH)),true)
242 LOCAL_CFLAGS += -DHDMI_PASSTHROUGH_ENABLED
Mingming Yin21854652016-04-13 11:54:02 -0700243 LOCAL_SRC_FILES += audio_extn/passthru.c
244endif
245
246ifeq ($(strip $(AUDIO_FEATURE_ENABLED_KEEP_ALIVE)),true)
247 LOCAL_CFLAGS += -DKEEP_ALIVE_ENABLED
248 LOCAL_SRC_FILES += audio_extn/keep_alive.c
Pradnya Chaphekar80a8cfb2014-10-20 16:17:01 -0700249endif
250
Narsinga Rao Chellaf928a982015-03-06 14:57:35 -0800251ifeq ($(strip $(AUDIO_FEATURE_ENABLED_SOURCE_TRACKING)),true)
252 LOCAL_CFLAGS += -DSOURCE_TRACKING_ENABLED
253 LOCAL_SRC_FILES += audio_extn/source_track.c
254endif
255
Naresh Tanniru9d027a62015-03-13 01:32:10 +0530256ifeq ($(strip $(AUDIO_FEATURE_ENABLED_SPLIT_A2DP)),true)
257 LOCAL_CFLAGS += -DSPLIT_A2DP_ENABLED
258 LOCAL_SRC_FILES += audio_extn/a2dp.c
259endif
260
Lakshman Chaluvaraju22ba9f12016-09-12 11:42:10 +0530261ifeq ($(strip $(AUDIO_FEATURE_ENABLED_QAF)),true)
262 LOCAL_CFLAGS += -DQAF_EXTN_ENABLED
263 LOCAL_C_INCLUDES += $(TARGET_OUT_HEADERS)/mm-audio/qaf/
264 LOCAL_SRC_FILES += audio_extn/qaf.c
265endif
266
Dhananjay Kumaree4d2002016-10-25 18:02:58 +0530267ifeq ($(strip $(AUDIO_FEATURE_ENABLED_COMPRESS_INPUT)),true)
268 LOCAL_CFLAGS += -DCOMPRESS_INPUT_ENABLED
269 LOCAL_SRC_FILES += audio_extn/compress_in.c
270endif
271
272ifeq ($(strip $(BOARD_SUPPORTS_QAHW)),true)
273 LOCAL_CFLAGS += -DAUDIO_HW_EXTN_API_ENABLED
274 LOCAL_SRC_FILES += audio_hw_extn_api.c
275endif
276
Bharath Gopal01310bb2016-12-05 15:39:32 +0530277ifeq ($(strip $(AUDIO_FEATURE_ENABLED_BT_HAL)),true)
278 LOCAL_CFLAGS += -DAUDIO_EXTN_BT_HAL_ENABLED
279 LOCAL_SRC_FILES += audio_extn/bt_hal.c
280endif
281
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800282LOCAL_SHARED_LIBRARIES := \
283 liblog \
284 libcutils \
285 libtinyalsa \
Divya Narayanan Poojary8fd98c82017-07-03 11:17:08 +0530286 libtinycompress_vendor \
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800287 libaudioroute \
Ben Romberger61764e32014-01-10 13:49:02 -0800288 libdl \
Ashish Jainf1eaa582016-05-23 20:54:24 +0530289 libaudioutils \
Vidyakumar Athota77327dd2014-08-07 16:44:25 -0700290 libexpat
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800291
292LOCAL_C_INCLUDES += \
293 external/tinyalsa/include \
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700294 external/tinycompress/include \
Ashish Jainf1eaa582016-05-23 20:54:24 +0530295 system/media/audio_utils/include \
Ben Romberger61764e32014-01-10 13:49:02 -0800296 external/expat/lib \
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -0700297 $(call include-path-for, audio-route) \
Eric Laurentb23d5282013-05-14 15:27:20 -0700298 $(call include-path-for, audio-effects) \
Apoorv Raghuvanshi9eaf94e2013-10-04 16:13:44 -0700299 $(LOCAL_PATH)/$(AUDIO_PLATFORM) \
Narsinga Rao Chella05573b72013-11-15 15:21:40 -0800300 $(LOCAL_PATH)/audio_extn \
Vidyakumar Athota77327dd2014-08-07 16:44:25 -0700301 $(LOCAL_PATH)/voice_extn
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800302
Kiran Kandi910e1862013-10-29 13:29:42 -0700303ifeq ($(strip $(AUDIO_FEATURE_ENABLED_LISTEN)),true)
304 LOCAL_CFLAGS += -DAUDIO_LISTEN_ENABLED
305 LOCAL_C_INCLUDES += $(TARGET_OUT_HEADERS)/mm-audio/audio-listen
306 LOCAL_SRC_FILES += audio_extn/listen.c
307endif
308
Ashish Jain81eb2a82015-05-13 10:52:34 +0530309ifeq ($(strip $(AUDIO_FEATURE_ENABLED_EXT_HDMI)),true)
310 LOCAL_CFLAGS += -DAUDIO_EXTERNAL_HDMI_ENABLED
311ifeq ($(strip $(AUDIO_FEATURE_ENABLED_HDMI_PASSTHROUGH)),true)
312 LOCAL_C_INCLUDES += $(TARGET_OUT_HEADERS)/mm-audio/audio-parsers
313 LOCAL_SHARED_LIBRARIES += libaudioparsers
314endif
315endif
316
Ravi Kumar Alamanda8fa6b192014-09-09 16:06:42 -0700317ifeq ($(strip $(BOARD_SUPPORTS_SOUND_TRIGGER)),true)
Banajit Goswami710f3532016-08-28 14:48:33 -0700318 ST_FEATURE_ENABLE := true
319endif
320
321ifeq ($(strip $(BOARD_SUPPORTS_SOUND_TRIGGER_HAL)),true)
322 ST_FEATURE_ENABLE := true
323endif
324
325ifeq ($(ST_FEATURE_ENABLE), true)
Ravi Kumar Alamanda8fa6b192014-09-09 16:06:42 -0700326 LOCAL_CFLAGS += -DSOUND_TRIGGER_ENABLED
327 LOCAL_CFLAGS += -DSOUND_TRIGGER_PLATFORM_NAME=$(TARGET_BOARD_PLATFORM)
328 LOCAL_C_INCLUDES += $(TARGET_OUT_HEADERS)/mm-audio/sound_trigger
329 LOCAL_SRC_FILES += audio_extn/soundtrigger.c
330endif
331
Damir Didjustof1d46c72013-11-06 17:59:04 -0800332ifeq ($(strip $(AUDIO_FEATURE_ENABLED_AUXPCM_BT)),true)
333 LOCAL_CFLAGS += -DAUXPCM_BT_ENABLED
334endif
335
Preetam Singh Ranawat2d0e4632015-02-02 12:40:59 +0530336ifeq ($(strip $(AUDIO_FEATURE_ENABLED_PM_SUPPORT)),true)
337 LOCAL_CFLAGS += -DPM_SUPPORT_ENABLED
338 LOCAL_SRC_FILES += audio_extn/pm.c
339 LOCAL_C_INCLUDES += $(TARGET_OUT_HEADERS)/libperipheralclient/inc
340 LOCAL_SHARED_LIBRARIES += libperipheral_client
341endif
342
Shiv Maliyappanahallic0656402016-09-03 14:13:26 -0700343ifeq ($(strip $(AUDIO_FEATURE_ENABLED_DISPLAY_PORT)),true)
344 LOCAL_CFLAGS += -DDISPLAY_PORT_ENABLED
345endif
346
Weiyin Jiangaa80acd2016-09-21 16:42:11 +0800347ifeq ($(strip $(AUDIO_FEATURE_ENABLED_GEF_SUPPORT)),true)
348 LOCAL_CFLAGS += -DAUDIO_GENERIC_EFFECT_FRAMEWORK_ENABLED
349 LOCAL_SRC_FILES += audio_extn/gef.c
350endif
351
Ben Rombergerd771a7c2017-02-22 18:05:17 -0800352ifeq ($(strip $($AUDIO_FEATURE_ADSP_HDLR_ENABLED)),true)
353 LOCAL_CFLAGS += -DAUDIO_EXTN_ADSP_HDLR_ENABLED
354 LOCAL_SRC_FILES += audio_extn/adsp_hdlr.c
355endif
356
Revathi Uddaraju1eac8b02017-05-18 17:13:33 +0530357ifeq ($(strip $(AUDIO_FEATURE_ENABLED_DYNAMIC_LOG)), true)
358 LOCAL_CFLAGS += -DDYNAMIC_LOG_ENABLED
359 LOCAL_C_INCLUDES += $(TARGET_OUT_HEADERS)/mm-audio/audio-log-utils
360 LOCAL_SHARED_LIBRARIES += libaudio_log_utils
361endif
362
Naresh Tannirue7156032017-04-18 17:43:05 -0700363ifeq ($(strip $($AUDIO_FEATURE_IP_HDLR_ENABLED)),true)
364 LOCAL_CFLAGS += -DAUDIO_EXTN_IP_HDLR_ENABLED
365 LOCAL_SRC_FILES += audio_extn/ip_hdlr_intf.c
366endif
367
Satya Krishna Pindiprolif1cd92b2016-04-14 19:05:23 +0530368LOCAL_CFLAGS += -Wall -Werror
Alexy Josephb1379942016-01-29 15:49:38 -0800369
Mingming Yin5b7c0b32014-08-04 15:49:24 -0700370LOCAL_COPY_HEADERS_TO := mm-audio
371LOCAL_COPY_HEADERS := audio_extn/audio_defs.h
372
Haynes Mathew George3a1f1fb2016-08-09 15:43:13 -0700373ifeq ($(strip $(AUDIO_FEATURE_ENABLED_SND_MONITOR)), true)
374 LOCAL_CFLAGS += -DSND_MONITOR_ENABLED
375 LOCAL_SRC_FILES += audio_extn/sndmonitor.c
376endif
377
Mingming Yin8e5a4f62013-10-07 15:23:41 -0700378LOCAL_MODULE := audio.primary.$(TARGET_BOARD_PLATFORM)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800379
Apoorv Raghuvanshi1b555f72014-05-29 12:48:15 -0700380LOCAL_MODULE_RELATIVE_PATH := hw
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800381
382LOCAL_MODULE_TAGS := optional
383
Naresh Tanniru10758b62017-06-05 21:05:53 +0530384LOCAL_VENDOR_MODULE := true
385
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800386include $(BUILD_SHARED_LIBRARY)
387
388endif