Quinn Male | 2e88375 | 2019-03-22 11:28:54 -0700 | [diff] [blame] | 1 | ifeq ($(strip $(BOARD_SUPPORTS_OPENSOURCE_STHAL)),true) |
| 2 | |
| 3 | LOCAL_PATH := $(call my-dir) |
| 4 | |
| 5 | include $(CLEAR_VARS) |
| 6 | |
| 7 | LOCAL_CFLAGS += -DSOUND_TRIGGER_PLATFORM=$(TARGET_BOARD_PLATFORM) |
| 8 | |
| 9 | # _ANDROID_ is needed by GCS, it uses this flag to determine the struct packing keyword per OS. |
| 10 | # Ideally we should not need this as GCS should be able to |
| 11 | # determine from copmiler flags |
| 12 | LOCAL_CFLAGS += -D_ANDROID_ |
| 13 | |
| 14 | LOCAL_CFLAGS += -Wall -Werror |
| 15 | |
| 16 | LOCAL_SRC_FILES := \ |
| 17 | sound_trigger_hw.c \ |
| 18 | sound_trigger_platform.c \ |
| 19 | st_session.c \ |
| 20 | st_hw_session_lsm.c \ |
| 21 | st_hw_session_gcs.c \ |
| 22 | st_hw_common.c \ |
| 23 | st_buffering.c |
| 24 | |
| 25 | ifeq ($(strip $(BOARD_SUPPORTS_QSTHW_API)),true) |
| 26 | LOCAL_CFLAGS += -DST_EXTN_ENABLED |
| 27 | LOCAL_SRC_FILES += st_extn/st_hw_extn.c |
| 28 | LOCAL_SRC_FILES += st_extn/st_hw_extn_intf.c |
| 29 | endif |
| 30 | |
| 31 | ifeq ($(strip $(SOUND_TRIGGER_FEATURE_LPMA_ENABLED)),true) |
| 32 | LOCAL_CFLAGS += -DST_LMPA_EXTN_ENABLED |
| 33 | LOCAL_SRC_FILES += st_extn/st_hw_lpma_extn.c |
| 34 | endif |
| 35 | |
| 36 | ifeq ($(strip $(AUDIO_FEATURE_ENABLED_KEEP_ALIVE)),true) |
| 37 | LOCAL_CFLAGS += -DUSE_KEEP_ALIVE |
| 38 | endif |
| 39 | |
| 40 | ifeq ($(strip $(AUDIO_FEATURE_ENABLED_SVA_MULTI_STAGE)),true) |
| 41 | LOCAL_CFLAGS += -DST_MULTI_STAGE_ENABLED |
Quinn Male | ef3e672 | 2019-06-10 18:18:25 -0700 | [diff] [blame] | 42 | LOCAL_C_INCLUDES += $(LOCAL_PATH)/ext_headers |
Quinn Male | 2e88375 | 2019-03-22 11:28:54 -0700 | [diff] [blame] | 43 | LOCAL_SRC_FILES += st_second_stage.c |
| 44 | endif |
| 45 | |
| 46 | ifeq ($(call is-platform-sdk-version-at-least,29),true) |
| 47 | LOCAL_CFLAGS += -DST_SUPPORT_GET_MODEL_STATE |
| 48 | endif |
| 49 | |
| 50 | ifeq ($(strip $(BOARD_SUPPORTS_SOUND_TRIGGER_CPU_AFFINITY_SET)),true) |
| 51 | LOCAL_CFLAGS += -DSOUND_TRIGGER_CPU_AFFINITY_SET -D_GNU_SOURCE |
| 52 | endif |
| 53 | |
| 54 | ifeq ($(strip $(AUDIO_FEATURE_ENABLED_GCOV)),true) |
| 55 | LOCAL_CFLAGS += --coverage -fprofile-arcs -ftest-coverage |
| 56 | LOCAL_CPPFLAGS += --coverage -fprofile-arcs -ftest-coverage |
| 57 | LOCAL_STATIC_LIBRARIES += libprofile_rt |
| 58 | endif |
| 59 | |
| 60 | LOCAL_C_INCLUDES += \ |
| 61 | external/tinyalsa/include \ |
| 62 | external/expat/lib \ |
| 63 | $(call include-path-for, audio-route) \ |
| 64 | $(LOCAL_PATH)/st_extn |
| 65 | ifeq ($(call is-platform-sdk-version-at-least,28),true) #Android P and above |
| 66 | LOCAL_HEADER_LIBRARIES += libhardware_headers \ |
| 67 | libsystem_headers |
| 68 | endif |
| 69 | |
| 70 | LOCAL_C_INCLUDES += $(TARGET_OUT_HEADERS)/mm-audio/graphite-client/gcs |
| 71 | LOCAL_C_INCLUDES += $(TARGET_OUT_HEADERS)/mm-audio/graphite-client/osal |
| 72 | LOCAL_C_INCLUDES += $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr/include |
Vignesh Kulothungan | dd3a973 | 2020-01-08 14:29:13 -0800 | [diff] [blame] | 73 | LOCAL_C_INCLUDES += $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr/include/audio |
Quinn Male | 2e88375 | 2019-03-22 11:28:54 -0700 | [diff] [blame] | 74 | LOCAL_C_INCLUDES += $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr/techpack/audio/include |
| 75 | LOCAL_ADDITIONAL_DEPENDENCIES += $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr |
| 76 | ifeq ($(strip $(AUDIO_FEATURE_ENABLED_DLKM)),true) |
| 77 | LOCAL_HEADER_LIBRARIES += audio_kernel_headers |
| 78 | LOCAL_C_INCLUDES += $(TARGET_OUT_INTERMEDIATES)/vendor/qcom/opensource/audio-kernel/include |
| 79 | endif |
| 80 | |
| 81 | LOCAL_SHARED_LIBRARIES := \ |
| 82 | liblog \ |
| 83 | libcutils \ |
| 84 | libtinyalsa \ |
| 85 | libaudioroute \ |
| 86 | libdl \ |
| 87 | libexpat \ |
| 88 | libhardware_legacy |
| 89 | |
| 90 | LOCAL_MODULE := sound_trigger.primary.$(TARGET_BOARD_PLATFORM) |
| 91 | LOCAL_MODULE_RELATIVE_PATH := hw |
| 92 | LOCAL_MODULE_OWNER := qti |
| 93 | LOCAL_MODULE_TAGS := optional |
| 94 | LOCAL_VENDOR_MODULE := true |
| 95 | LOCAL_MULTILIB := $(AUDIOSERVER_MULTILIB) |
| 96 | |
Quinn Male | 2e88375 | 2019-03-22 11:28:54 -0700 | [diff] [blame] | 97 | include $(BUILD_SHARED_LIBRARY) |
| 98 | |
| 99 | # |
| 100 | # to build sound_trigger_test executable |
| 101 | # uncomment the lines below |
| 102 | # |
| 103 | #include $(CLEAR_VARS) |
| 104 | # |
| 105 | #LOCAL_SRC_FILES := sound_trigger_test.c |
| 106 | #LOCAL_C_INCLUDES += \ |
| 107 | # system/core/include \ |
| 108 | # hardware/libhardware/include |
| 109 | # |
| 110 | #LOCAL_SHARED_LIBRARIES := \ |
| 111 | # libcutils \ |
| 112 | # libhardware |
| 113 | # |
| 114 | #LOCAL_MODULE := sound_trigger_test |
| 115 | #LOCAL_MODULE_OWNER := qti |
| 116 | #LOCAL_MODULE_TAGS := optional |
| 117 | #LOCAL_32_BIT_ONLY := true |
| 118 | #LOCAL_VENDOR_MODULE := true |
| 119 | # |
| 120 | #include $(BUILD_EXECUTABLE) |
| 121 | |
| 122 | endif |