blob: 54377f1b36b32db39aa1bd208bec2258f09c2740 [file] [log] [blame]
Mathias Agopian65ab4712010-07-14 17:59:35 -07001LOCAL_PATH:= $(call my-dir)
2
Mathias Agopian65ab4712010-07-14 17:59:35 -07003include $(CLEAR_VARS)
4
Glenn Kasten01066232012-02-27 11:50:44 -08005LOCAL_SRC_FILES := \
Glenn Kasten1dc28b72012-04-24 10:01:03 -07006 ISchedulingPolicyService.cpp \
7 SchedulingPolicyService.cpp
8
9# FIXME Move this library to frameworks/native
10LOCAL_MODULE := libscheduling_policy
11
12include $(BUILD_STATIC_LIBRARY)
13
14include $(CLEAR_VARS)
15
Mathias Agopian65ab4712010-07-14 17:59:35 -070016LOCAL_SRC_FILES:= \
17 AudioFlinger.cpp \
Eric Laurent81784c32012-11-19 14:55:58 -080018 Threads.cpp \
19 Tracks.cpp \
20 Effects.cpp \
Mathias Agopian65ab4712010-07-14 17:59:35 -070021 AudioMixer.cpp.arm \
22 AudioResampler.cpp.arm \
Glenn Kasten44deb052012-02-05 18:09:08 -080023 AudioPolicyService.cpp \
SathishKumar Mani76b11162012-01-17 10:49:47 -080024 ServiceUtilities.cpp \
Ying Wangda0dc0a2013-04-09 21:53:49 -070025 AudioResamplerCubic.cpp.arm \
SathishKumar Mani76b11162012-01-17 10:49:47 -080026 AudioResamplerSinc.cpp.arm
Glenn Kastenac602052012-10-01 14:04:31 -070027
Glenn Kastendc998c82012-03-23 18:53:59 -070028LOCAL_SRC_FILES += StateQueue.cpp
29
Eric Laurent6d8b6942011-06-24 07:01:31 -070030LOCAL_C_INCLUDES := \
Glenn Kasten33b38392012-03-13 15:59:35 -070031 $(call include-path-for, audio-effects) \
32 $(call include-path-for, audio-utils)
Eric Laurent6d8b6942011-06-24 07:01:31 -070033
Mathias Agopian65ab4712010-07-14 17:59:35 -070034LOCAL_SHARED_LIBRARIES := \
Glenn Kasten3b21c502011-12-15 09:52:39 -080035 libaudioutils \
John Grossman4ff14ba2012-02-08 16:37:41 -080036 libcommon_time_client \
Mathias Agopian65ab4712010-07-14 17:59:35 -070037 libcutils \
38 libutils \
Ying Wangda0dc0a2013-04-09 21:53:49 -070039 liblog \
Mathias Agopian65ab4712010-07-14 17:59:35 -070040 libbinder \
Glenn Kastend12c68a2012-03-23 14:04:27 -070041 libmedia \
Glenn Kasten2dd4bdd2012-08-29 11:10:32 -070042 libnbaio \
Dima Zavinfce7a472011-04-19 22:30:36 -070043 libhardware \
Mathias Agopian65ab4712010-07-14 17:59:35 -070044 libhardware_legacy \
Jeff Brown5e0067b2011-07-11 22:12:16 -070045 libeffects \
Eric Laurentfeb0db62011-07-22 09:04:31 -070046 libdl \
47 libpowermanager
Mathias Agopian65ab4712010-07-14 17:59:35 -070048
Dima Zavinfce7a472011-04-19 22:30:36 -070049LOCAL_STATIC_LIBRARIES := \
Glenn Kasten1dc28b72012-04-24 10:01:03 -070050 libscheduling_policy \
Glenn Kasten4d8d0c32011-07-08 15:26:12 -070051 libcpustats \
Dima Zavinfce7a472011-04-19 22:30:36 -070052 libmedia_helper
Mathias Agopian65ab4712010-07-14 17:59:35 -070053
Mathias Agopian65ab4712010-07-14 17:59:35 -070054LOCAL_MODULE:= libaudioflinger
55
Glenn Kasten153b9fe2013-07-15 11:23:36 -070056LOCAL_SRC_FILES += FastMixer.cpp FastMixerState.cpp AudioWatchdog.cpp
Glenn Kasten0a14c4c2012-06-13 14:58:49 -070057
Glenn Kasten97b5d0d2012-03-23 18:54:19 -070058LOCAL_CFLAGS += -DSTATE_QUEUE_INSTANTIATIONS='"StateQueueInstantiations.cpp"'
59
Alex Rayb3a83642012-11-30 19:42:28 -080060# Define ANDROID_SMP appropriately. Used to get inline tracing fast-path.
61ifeq ($(TARGET_CPU_SMP),true)
62 LOCAL_CFLAGS += -DANDROID_SMP=1
63else
64 LOCAL_CFLAGS += -DANDROID_SMP=0
65endif
66
Mathias Agopiane762be92013-05-09 16:26:45 -070067LOCAL_CFLAGS += -fvisibility=hidden
68
Mathias Agopian65ab4712010-07-14 17:59:35 -070069include $(BUILD_SHARED_LIBRARY)
ty.leec8823992012-10-01 13:54:14 +090070
Mathias Agopian0fc2cb52012-10-21 01:01:38 -070071#
72# build audio resampler test tool
73#
74include $(CLEAR_VARS)
75
76LOCAL_SRC_FILES:= \
77 test-resample.cpp \
78 AudioResampler.cpp.arm \
79 AudioResamplerCubic.cpp.arm \
80 AudioResamplerSinc.cpp.arm
81
82LOCAL_SHARED_LIBRARIES := \
Ying Wangda0dc0a2013-04-09 21:53:49 -070083 libdl \
Mathias Agopian0fc2cb52012-10-21 01:01:38 -070084 libcutils \
Ying Wangda0dc0a2013-04-09 21:53:49 -070085 libutils \
86 liblog
Mathias Agopian0fc2cb52012-10-21 01:01:38 -070087
88LOCAL_MODULE:= test-resample
89
90LOCAL_MODULE_TAGS := optional
91
92include $(BUILD_EXECUTABLE)
93
ty.leec8823992012-10-01 13:54:14 +090094include $(call all-makefiles-under,$(LOCAL_PATH))