summaryrefslogtreecommitdiffstats
path: root/services/audioflinger/Android.mk
diff options
context:
space:
mode:
Diffstat (limited to 'services/audioflinger/Android.mk')
-rw-r--r--services/audioflinger/Android.mk39
1 files changed, 39 insertions, 0 deletions
diff --git a/services/audioflinger/Android.mk b/services/audioflinger/Android.mk
new file mode 100644
index 0000000..257f62c
--- /dev/null
+++ b/services/audioflinger/Android.mk
@@ -0,0 +1,39 @@
+LOCAL_PATH:= $(call my-dir)
+
+include $(CLEAR_VARS)
+
+LOCAL_SRC_FILES:= \
+ AudioFlinger.cpp \
+ AudioMixer.cpp.arm \
+ AudioResampler.cpp.arm \
+ AudioPolicyService.cpp \
+ ServiceUtilities.cpp
+# AudioResamplerSinc.cpp.arm
+# AudioResamplerCubic.cpp.arm
+
+LOCAL_C_INCLUDES := \
+ $(call include-path-for, audio-effects) \
+ $(call include-path-for, audio-utils)
+
+# FIXME keep libmedia_native but remove libmedia after split
+LOCAL_SHARED_LIBRARIES := \
+ libaudioutils \
+ libcommon_time_client \
+ libcutils \
+ libutils \
+ libbinder \
+ libmedia \
+ libmedia_native \
+ libhardware \
+ libhardware_legacy \
+ libeffects \
+ libdl \
+ libpowermanager
+
+LOCAL_STATIC_LIBRARIES := \
+ libcpustats \
+ libmedia_helper
+
+LOCAL_MODULE:= libaudioflinger
+
+include $(BUILD_SHARED_LIBRARY)