blob: 8aa539cfe827c97ae4c2ce67ec3f718ef254496c [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
63LOCAL_ADDITIONAL_DEPENDENCIES += $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr
Divya Narayanan Poojary8fd98c82017-07-03 11:17:08 +053064LOCAL_CFLAGS += -DUSE_VENDOR_EXTN
Apoorv Raghuvanshi9eaf94e2013-10-04 16:13:44 -070065
Mingming Yine5bf8372015-02-26 15:03:10 -080066ifeq ($(strip $(AUDIO_FEATURE_ENABLED_HDMI_EDID)),true)
Mingming Yin497419f2015-07-01 16:57:32 -070067 LOCAL_CFLAGS += -DHDMI_EDID
Pradnya Chaphekar4403bd72014-09-09 09:50:01 -070068 LOCAL_SRC_FILES += edid.c
69endif
70
Mingming Yin08c7e312015-03-16 18:10:58 -070071ifeq ($(strip $(AUDIO_USE_LL_AS_PRIMARY_OUTPUT)),true)
72 LOCAL_CFLAGS += -DUSE_LL_AS_PRIMARY_OUTPUT
73endif
74
Mingming Yina6dad602014-05-16 12:10:55 -070075ifeq ($(strip $(AUDIO_FEATURE_ENABLED_PCM_OFFLOAD)),true)
Mingming Yin67e34512014-04-03 17:47:22 -070076 LOCAL_CFLAGS += -DPCM_OFFLOAD_ENABLED
77endif
78
Mingming Yina6dad602014-05-16 12:10:55 -070079ifeq ($(strip $(AUDIO_FEATURE_ENABLED_ANC_HEADSET)),true)
Apoorv Raghuvanshi9eaf94e2013-10-04 16:13:44 -070080 LOCAL_CFLAGS += -DANC_HEADSET_ENABLED
81endif
82
Venkata Narendra Kumar Gutta4bd09d02016-01-29 15:31:04 +053083ifeq ($(strip $(AUDIO_FEATURE_ENABLED_HIFI_AUDIO)),true)
84 LOCAL_CFLAGS += -DHIFI_AUDIO_ENABLED
85endif
86
Srinivas Julakanti1ca769a2017-01-04 23:18:08 -080087ifeq ($(strip $(AUDIO_FEATURE_ENABLED_RAS)),true)
88 LOCAL_CFLAGS += -DRAS_ENABLED
89endif
90
Banajit Goswami20cdd212015-09-11 01:11:30 -070091ifeq ($(strip $(AUDIO_FEATURE_ENABLED_VBAT_MONITOR)),true)
92 LOCAL_CFLAGS += -DVBAT_MONITOR_ENABLED
93endif
94
Mingming Yina6dad602014-05-16 12:10:55 -070095ifeq ($(strip $(AUDIO_FEATURE_ENABLED_FLUENCE)),true)
Venkata Narendra Kumar Gutta88fd0bc2014-03-27 19:47:56 +053096 LOCAL_CFLAGS += -DFLUENCE_ENABLED
97endif
98
Mingming Yina6dad602014-05-16 12:10:55 -070099ifeq ($(strip $(AUDIO_FEATURE_ENABLED_PROXY_DEVICE)),true)
Apoorv Raghuvanshi9eaf94e2013-10-04 16:13:44 -0700100 LOCAL_CFLAGS += -DAFE_PROXY_ENABLED
101endif
102
Sudheer Papothi390bcf32014-12-04 01:25:17 +0530103ifeq ($(strip $(AUDIO_FEATURE_ENABLED_KPI_OPTIMIZE)),true)
104 LOCAL_CFLAGS += -DKPI_OPTIMIZE_ENABLED
105endif
106
Mingming Yin12125e82015-10-26 20:40:36 -0700107ifeq ($(strip $(AUDIO_FEATURE_ENABLED_FM_POWER_OPT)),true)
108 LOCAL_CFLAGS += -DFM_POWER_OPT
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -0700109 LOCAL_SRC_FILES += audio_extn/fm.c
110endif
111
Kuirong Wang357e0b12016-07-06 00:29:15 -0700112ifeq ($(strip $(AUDIO_FEATURE_ENABLED_USB_TUNNEL_AUDIO)),true)
Apoorv Raghuvanshi5792d4b2013-10-07 18:40:05 -0700113 LOCAL_CFLAGS += -DUSB_HEADSET_ENABLED
114 LOCAL_SRC_FILES += audio_extn/usb.c
115endif
Mingming Yina6dad602014-05-16 12:10:55 -0700116
117ifeq ($(strip $(AUDIO_FEATURE_ENABLED_HFP)),true)
Vimal Puthanveed5b4d3f12013-11-05 15:57:39 -0800118 LOCAL_CFLAGS += -DHFP_ENABLED
119 LOCAL_SRC_FILES += audio_extn/hfp.c
120endif
Apoorv Raghuvanshi5792d4b2013-10-07 18:40:05 -0700121
Mingming Yina6dad602014-05-16 12:10:55 -0700122ifeq ($(strip $(AUDIO_FEATURE_ENABLED_CUSTOMSTEREO)),true)
Jitendra Singh Naruka9a6a8d42014-02-10 20:07:12 -0800123 LOCAL_CFLAGS += -DCUSTOM_STEREO_ENABLED
124endif
125
Mingming Yina6dad602014-05-16 12:10:55 -0700126ifeq ($(strip $(AUDIO_FEATURE_ENABLED_SSR)),true)
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -0700127 LOCAL_CFLAGS += -DSSR_ENABLED
128 LOCAL_SRC_FILES += audio_extn/ssr.c
Shiv Maliyappanahalli5a10aea2015-07-02 10:36:23 -0700129 LOCAL_C_INCLUDES += $(TARGET_OUT_HEADERS)/mm-audio/surround_sound_3mic/
Nagender Telkarca2b4942014-03-24 12:25:42 -0600130 LOCAL_C_INCLUDES += $(TARGET_OUT_HEADERS)/common/inc/
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -0700131endif
132
Mingming Yina6dad602014-05-16 12:10:55 -0700133ifeq ($(strip $(AUDIO_FEATURE_ENABLED_MULTI_VOICE_SESSIONS)),true)
Shiv Maliyappanahalli303f51d2013-10-25 16:24:27 -0700134 LOCAL_CFLAGS += -DMULTI_VOICE_SESSION_ENABLED
135 LOCAL_SRC_FILES += voice_extn/voice_extn.c
Vidyakumar Athota21b3bb92014-04-25 11:08:08 -0700136
Mingming Yina6dad602014-05-16 12:10:55 -0700137ifeq ($(strip $(AUDIO_FEATURE_ENABLED_INCALL_MUSIC)),true)
Shiv Maliyappanahalli303f51d2013-10-25 16:24:27 -0700138 LOCAL_CFLAGS += -DINCALL_MUSIC_ENABLED
139endif
Mingming Yina6dad602014-05-16 12:10:55 -0700140ifeq ($(strip $(AUDIO_FEATURE_ENABLED_COMPRESS_VOIP)),true)
Narsinga Rao Chella05573b72013-11-15 15:21:40 -0800141 LOCAL_CFLAGS += -DCOMPRESS_VOIP_ENABLED
142 LOCAL_SRC_FILES += voice_extn/compress_voip.c
143endif
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -0700144
145endif
146
Mingming Yina6dad602014-05-16 12:10:55 -0700147ifeq ($(strip $(AUDIO_FEATURE_ENABLED_EXTN_FORMATS)),true)
Satya Krishna Pindiproli5d82d012015-08-12 18:21:25 +0530148LOCAL_CFLAGS += -DAUDIO_EXTN_FORMATS_ENABLED
Gopikrishnaiah Anandanf538cef2013-10-28 14:06:03 -0700149endif
Shiv Maliyappanahalli303f51d2013-10-25 16:24:27 -0700150
Anish Kumard80a1392014-07-16 16:18:51 -0700151ifeq ($(strip $(AUDIO_FEATURE_ENABLED_SPKR_PROTECTION)),true)
Gopikrishnaiah Anandanf538cef2013-10-28 14:06:03 -0700152 LOCAL_CFLAGS += -DSPKR_PROT_ENABLED
153 LOCAL_SRC_FILES += audio_extn/spkr_protection.c
Gopikrishnaiah Anandanf538cef2013-10-28 14:06:03 -0700154endif
Shiv Maliyappanahalli303f51d2013-10-25 16:24:27 -0700155
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -0700156ifdef MULTIPLE_HW_VARIANTS_ENABLED
157 LOCAL_CFLAGS += -DHW_VARIANTS_ENABLED
158 LOCAL_SRC_FILES += $(AUDIO_PLATFORM)/hw_info.c
159endif
160
Mingming Yina6dad602014-05-16 12:10:55 -0700161ifeq ($(strip $(AUDIO_FEATURE_ENABLED_COMPRESS_CAPTURE)),true)
Mingming Yine62d7842013-10-25 16:26:03 -0700162 LOCAL_CFLAGS += -DCOMPRESS_CAPTURE_ENABLED
163 LOCAL_SRC_FILES += audio_extn/compress_capture.c
164endif
165
Jitendra Naruka1b6513f2014-11-22 19:34:13 -0800166ifeq ($(strip $(AUDIO_FEATURE_ENABLED_DTS_EAGLE)),true)
167 LOCAL_CFLAGS += -DDTS_EAGLE
168 LOCAL_SRC_FILES += audio_extn/dts_eagle.c
169endif
170
Mingming Yina6dad602014-05-16 12:10:55 -0700171ifeq ($(strip $(DOLBY_DDP)),true)
Mingming Yin90310102013-11-13 16:57:00 -0800172 LOCAL_CFLAGS += -DDS1_DOLBY_DDP_ENABLED
Subhash Chandra Bose Naripeddy7690c562013-12-14 00:34:53 -0800173 LOCAL_SRC_FILES += audio_extn/dolby.c
Mingming Yin90310102013-11-13 16:57:00 -0800174endif
175
Pradnya Chaphekar73e2e8b2015-05-01 02:18:17 -0700176ifeq ($(strip $(DS1_DOLBY_DAP)),true)
Subhash Chandra Bose Naripeddy7690c562013-12-14 00:34:53 -0800177 LOCAL_CFLAGS += -DDS1_DOLBY_DAP_ENABLED
Mingming Yina6dad602014-05-16 12:10:55 -0700178ifneq ($(strip $(DOLBY_DDP)),true)
Subhash Chandra Bose Naripeddy7690c562013-12-14 00:34:53 -0800179 LOCAL_SRC_FILES += audio_extn/dolby.c
180endif
181endif
182
Mingming Yin3ee55c62014-08-04 14:23:35 -0700183ifeq ($(strip $(AUDIO_FEATURE_ENABLED_EXTN_FLAC_DECODER)),true)
Satya Krishna Pindiproli70471602015-04-24 19:12:43 +0530184 LOCAL_CFLAGS += -DFLAC_OFFLOAD_ENABLED
185 LOCAL_CFLAGS += -DCOMPRESS_METADATA_NEEDED
186endif
187
188ifeq ($(strip $(AUDIO_FEATURE_ENABLED_VORBIS_OFFLOAD)),true)
189 LOCAL_CFLAGS += -DVORBIS_OFFLOAD_ENABLED
190 LOCAL_CFLAGS += -DCOMPRESS_METADATA_NEEDED
191
192endif
193
194ifeq ($(strip $(AUDIO_FEATURE_ENABLED_WMA_OFFLOAD)),true)
195 LOCAL_CFLAGS += -DWMA_OFFLOAD_ENABLED
196 LOCAL_CFLAGS += -DCOMPRESS_METADATA_NEEDED
197endif
198
199ifeq ($(strip $(AUDIO_FEATURE_ENABLED_ALAC_OFFLOAD)),true)
200 LOCAL_CFLAGS += -DALAC_OFFLOAD_ENABLED
201 LOCAL_CFLAGS += -DCOMPRESS_METADATA_NEEDED
202endif
203
204ifeq ($(strip $(AUDIO_FEATURE_ENABLED_APE_OFFLOAD)),true)
205 LOCAL_CFLAGS += -DAPE_OFFLOAD_ENABLED
206 LOCAL_CFLAGS += -DCOMPRESS_METADATA_NEEDED
Mingming Yin3ee55c62014-08-04 14:23:35 -0700207endif
208
Vidyakumar Athotac1d39c92015-02-25 15:14:26 -0800209ifeq ($(strip $(AUDIO_FEATURE_ENABLED_PCM_OFFLOAD_24)),true)
210 LOCAL_CFLAGS += -DPCM_OFFLOAD_ENABLED_24
211endif
212
Manish Dewangana6fc5442015-08-24 20:30:31 +0530213ifeq ($(strip $(AUDIO_FEATURE_ENABLED_AAC_ADTS_OFFLOAD)),true)
214 LOCAL_CFLAGS += -DAAC_ADTS_OFFLOAD_ENABLED
215endif
216
Lior Barenboim0b61bc72014-05-13 13:01:37 +0300217ifeq ($(strip $(AUDIO_FEATURE_ENABLED_DEV_ARBI)),true)
218 LOCAL_CFLAGS += -DDEV_ARBI_ENABLED
219 LOCAL_SRC_FILES += audio_extn/dev_arbi.c
220endif
221
Naresh Tanniruc0517bc2014-10-26 15:30:55 +0530222ifeq ($(strip $(AUDIO_FEATURE_ENABLED_RECORD_PLAY_CONCURRENCY)),true)
223 LOCAL_CFLAGS += -DRECORD_PLAY_CONCURRENCY
224endif
225
Ashish Jain8ec50472014-10-16 13:56:28 +0530226ifeq ($(strip $(AUDIO_FEATURE_ENABLED_ACDB_LICENSE)), true)
227 LOCAL_CFLAGS += -DDOLBY_ACDB_LICENSE
228endif
229
Pradnya Chaphekar8a9dcd82014-09-09 09:49:10 -0700230ifeq ($(strip $(AUDIO_FEATURE_ENABLED_DS2_DOLBY_DAP)),true)
231 LOCAL_CFLAGS += -DDS2_DOLBY_DAP_ENABLED
Pradnya Chaphekar73e2e8b2015-05-01 02:18:17 -0700232 LOCAL_CFLAGS += -DDS1_DOLBY_DDP_ENABLED
Pradnya Chaphekar8a9dcd82014-09-09 09:49:10 -0700233ifneq ($(strip $(DOLBY_DDP)),true)
Pradnya Chaphekar73e2e8b2015-05-01 02:18:17 -0700234 ifneq ($(strip $(DS1_DOLBY_DAP)),true)
Pradnya Chaphekar8a9dcd82014-09-09 09:49:10 -0700235 LOCAL_SRC_FILES += audio_extn/dolby.c
236 endif
237endif
238endif
239
Pradnya Chaphekar80a8cfb2014-10-20 16:17:01 -0700240ifeq ($(strip $(AUDIO_FEATURE_ENABLED_HDMI_PASSTHROUGH)),true)
241 LOCAL_CFLAGS += -DHDMI_PASSTHROUGH_ENABLED
Mingming Yin21854652016-04-13 11:54:02 -0700242 LOCAL_SRC_FILES += audio_extn/passthru.c
243endif
244
245ifeq ($(strip $(AUDIO_FEATURE_ENABLED_KEEP_ALIVE)),true)
246 LOCAL_CFLAGS += -DKEEP_ALIVE_ENABLED
247 LOCAL_SRC_FILES += audio_extn/keep_alive.c
Pradnya Chaphekar80a8cfb2014-10-20 16:17:01 -0700248endif
249
Narsinga Rao Chellaf928a982015-03-06 14:57:35 -0800250ifeq ($(strip $(AUDIO_FEATURE_ENABLED_SOURCE_TRACKING)),true)
251 LOCAL_CFLAGS += -DSOURCE_TRACKING_ENABLED
252 LOCAL_SRC_FILES += audio_extn/source_track.c
253endif
254
Naresh Tanniru9d027a62015-03-13 01:32:10 +0530255ifeq ($(strip $(AUDIO_FEATURE_ENABLED_SPLIT_A2DP)),true)
256 LOCAL_CFLAGS += -DSPLIT_A2DP_ENABLED
257 LOCAL_SRC_FILES += audio_extn/a2dp.c
258endif
259
Lakshman Chaluvaraju22ba9f12016-09-12 11:42:10 +0530260ifeq ($(strip $(AUDIO_FEATURE_ENABLED_QAF)),true)
261 LOCAL_CFLAGS += -DQAF_EXTN_ENABLED
262 LOCAL_C_INCLUDES += $(TARGET_OUT_HEADERS)/mm-audio/qaf/
263 LOCAL_SRC_FILES += audio_extn/qaf.c
264endif
265
Dhananjay Kumaree4d2002016-10-25 18:02:58 +0530266ifeq ($(strip $(AUDIO_FEATURE_ENABLED_COMPRESS_INPUT)),true)
267 LOCAL_CFLAGS += -DCOMPRESS_INPUT_ENABLED
268 LOCAL_SRC_FILES += audio_extn/compress_in.c
269endif
270
271ifeq ($(strip $(BOARD_SUPPORTS_QAHW)),true)
272 LOCAL_CFLAGS += -DAUDIO_HW_EXTN_API_ENABLED
273 LOCAL_SRC_FILES += audio_hw_extn_api.c
274endif
275
Bharath Gopal01310bb2016-12-05 15:39:32 +0530276ifeq ($(strip $(AUDIO_FEATURE_ENABLED_BT_HAL)),true)
277 LOCAL_CFLAGS += -DAUDIO_EXTN_BT_HAL_ENABLED
278 LOCAL_SRC_FILES += audio_extn/bt_hal.c
279endif
280
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800281LOCAL_SHARED_LIBRARIES := \
282 liblog \
283 libcutils \
284 libtinyalsa \
Divya Narayanan Poojary8fd98c82017-07-03 11:17:08 +0530285 libtinycompress_vendor \
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800286 libaudioroute \
Ben Romberger61764e32014-01-10 13:49:02 -0800287 libdl \
Ashish Jainf1eaa582016-05-23 20:54:24 +0530288 libaudioutils \
Vidyakumar Athota77327dd2014-08-07 16:44:25 -0700289 libexpat
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800290
291LOCAL_C_INCLUDES += \
292 external/tinyalsa/include \
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700293 external/tinycompress/include \
Ashish Jainf1eaa582016-05-23 20:54:24 +0530294 system/media/audio_utils/include \
Ben Romberger61764e32014-01-10 13:49:02 -0800295 external/expat/lib \
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -0700296 $(call include-path-for, audio-route) \
Eric Laurentb23d5282013-05-14 15:27:20 -0700297 $(call include-path-for, audio-effects) \
Apoorv Raghuvanshi9eaf94e2013-10-04 16:13:44 -0700298 $(LOCAL_PATH)/$(AUDIO_PLATFORM) \
Narsinga Rao Chella05573b72013-11-15 15:21:40 -0800299 $(LOCAL_PATH)/audio_extn \
Vidyakumar Athota77327dd2014-08-07 16:44:25 -0700300 $(LOCAL_PATH)/voice_extn
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800301
Kiran Kandi910e1862013-10-29 13:29:42 -0700302ifeq ($(strip $(AUDIO_FEATURE_ENABLED_LISTEN)),true)
303 LOCAL_CFLAGS += -DAUDIO_LISTEN_ENABLED
304 LOCAL_C_INCLUDES += $(TARGET_OUT_HEADERS)/mm-audio/audio-listen
305 LOCAL_SRC_FILES += audio_extn/listen.c
306endif
307
Ashish Jain81eb2a82015-05-13 10:52:34 +0530308ifeq ($(strip $(AUDIO_FEATURE_ENABLED_EXT_HDMI)),true)
309 LOCAL_CFLAGS += -DAUDIO_EXTERNAL_HDMI_ENABLED
310ifeq ($(strip $(AUDIO_FEATURE_ENABLED_HDMI_PASSTHROUGH)),true)
311 LOCAL_C_INCLUDES += $(TARGET_OUT_HEADERS)/mm-audio/audio-parsers
312 LOCAL_SHARED_LIBRARIES += libaudioparsers
313endif
314endif
315
Ravi Kumar Alamanda8fa6b192014-09-09 16:06:42 -0700316ifeq ($(strip $(BOARD_SUPPORTS_SOUND_TRIGGER)),true)
Banajit Goswami710f3532016-08-28 14:48:33 -0700317 ST_FEATURE_ENABLE := true
318endif
319
320ifeq ($(strip $(BOARD_SUPPORTS_SOUND_TRIGGER_HAL)),true)
321 ST_FEATURE_ENABLE := true
322endif
323
324ifeq ($(ST_FEATURE_ENABLE), true)
Ravi Kumar Alamanda8fa6b192014-09-09 16:06:42 -0700325 LOCAL_CFLAGS += -DSOUND_TRIGGER_ENABLED
326 LOCAL_CFLAGS += -DSOUND_TRIGGER_PLATFORM_NAME=$(TARGET_BOARD_PLATFORM)
327 LOCAL_C_INCLUDES += $(TARGET_OUT_HEADERS)/mm-audio/sound_trigger
328 LOCAL_SRC_FILES += audio_extn/soundtrigger.c
329endif
330
Damir Didjustof1d46c72013-11-06 17:59:04 -0800331ifeq ($(strip $(AUDIO_FEATURE_ENABLED_AUXPCM_BT)),true)
332 LOCAL_CFLAGS += -DAUXPCM_BT_ENABLED
333endif
334
Preetam Singh Ranawat2d0e4632015-02-02 12:40:59 +0530335ifeq ($(strip $(AUDIO_FEATURE_ENABLED_PM_SUPPORT)),true)
336 LOCAL_CFLAGS += -DPM_SUPPORT_ENABLED
337 LOCAL_SRC_FILES += audio_extn/pm.c
338 LOCAL_C_INCLUDES += $(TARGET_OUT_HEADERS)/libperipheralclient/inc
339 LOCAL_SHARED_LIBRARIES += libperipheral_client
340endif
341
Shiv Maliyappanahallic0656402016-09-03 14:13:26 -0700342ifeq ($(strip $(AUDIO_FEATURE_ENABLED_DISPLAY_PORT)),true)
343 LOCAL_CFLAGS += -DDISPLAY_PORT_ENABLED
344endif
345
Weiyin Jiangaa80acd2016-09-21 16:42:11 +0800346ifeq ($(strip $(AUDIO_FEATURE_ENABLED_GEF_SUPPORT)),true)
347 LOCAL_CFLAGS += -DAUDIO_GENERIC_EFFECT_FRAMEWORK_ENABLED
348 LOCAL_SRC_FILES += audio_extn/gef.c
349endif
350
Ben Rombergerd771a7c2017-02-22 18:05:17 -0800351ifeq ($(strip $($AUDIO_FEATURE_ADSP_HDLR_ENABLED)),true)
352 LOCAL_CFLAGS += -DAUDIO_EXTN_ADSP_HDLR_ENABLED
353 LOCAL_SRC_FILES += audio_extn/adsp_hdlr.c
354endif
355
Revathi Uddaraju1eac8b02017-05-18 17:13:33 +0530356ifeq ($(strip $(AUDIO_FEATURE_ENABLED_DYNAMIC_LOG)), true)
357 LOCAL_CFLAGS += -DDYNAMIC_LOG_ENABLED
358 LOCAL_C_INCLUDES += $(TARGET_OUT_HEADERS)/mm-audio/audio-log-utils
359 LOCAL_SHARED_LIBRARIES += libaudio_log_utils
360endif
361
Naresh Tannirue7156032017-04-18 17:43:05 -0700362ifeq ($(strip $($AUDIO_FEATURE_IP_HDLR_ENABLED)),true)
363 LOCAL_CFLAGS += -DAUDIO_EXTN_IP_HDLR_ENABLED
364 LOCAL_SRC_FILES += audio_extn/ip_hdlr_intf.c
365endif
366
Satya Krishna Pindiprolif1cd92b2016-04-14 19:05:23 +0530367LOCAL_CFLAGS += -Wall -Werror
Alexy Josephb1379942016-01-29 15:49:38 -0800368
Mingming Yin5b7c0b32014-08-04 15:49:24 -0700369LOCAL_COPY_HEADERS_TO := mm-audio
370LOCAL_COPY_HEADERS := audio_extn/audio_defs.h
371
Haynes Mathew George3a1f1fb2016-08-09 15:43:13 -0700372ifeq ($(strip $(AUDIO_FEATURE_ENABLED_SND_MONITOR)), true)
373 LOCAL_CFLAGS += -DSND_MONITOR_ENABLED
374 LOCAL_SRC_FILES += audio_extn/sndmonitor.c
375endif
376
Mingming Yin8e5a4f62013-10-07 15:23:41 -0700377LOCAL_MODULE := audio.primary.$(TARGET_BOARD_PLATFORM)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800378
Apoorv Raghuvanshi1b555f72014-05-29 12:48:15 -0700379LOCAL_MODULE_RELATIVE_PATH := hw
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800380
381LOCAL_MODULE_TAGS := optional
382
Naresh Tanniru10758b62017-06-05 21:05:53 +0530383LOCAL_VENDOR_MODULE := true
384
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800385include $(BUILD_SHARED_LIBRARY)
386
387endif