blob: a932af76c3372ac69cb094d0300e5f0c8a36f886 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
LOCAL_PATH:= $(call my-dir)
# Effect factory library
include $(CLEAR_VARS)
LOCAL_SRC_FILES:= \
EffectsFactory.c
LOCAL_SHARED_LIBRARIES := \
libcutils liblog
LOCAL_MODULE:= libeffects
LOCAL_SHARED_LIBRARIES += libdl
LOCAL_C_INCLUDES := \
$(call include-path-for, audio-effects)
include $(BUILD_SHARED_LIBRARY)
|