blob: 5fcc9ba048170083d9f04f75d8d406937d69eea5 [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
Glenn Kastenaf783aa2014-03-02 19:48:19 -080055LOCAL_32_BIT_ONLY := true
Mathias Agopian65ab4712010-07-14 17:59:35 -070056
Glenn Kasten153b9fe2013-07-15 11:23:36 -070057LOCAL_SRC_FILES += FastMixer.cpp FastMixerState.cpp AudioWatchdog.cpp
Glenn Kasten0a14c4c2012-06-13 14:58:49 -070058
Glenn Kasten97b5d0d2012-03-23 18:54:19 -070059LOCAL_CFLAGS += -DSTATE_QUEUE_INSTANTIATIONS='"StateQueueInstantiations.cpp"'
60
Alex Rayb3a83642012-11-30 19:42:28 -080061# Define ANDROID_SMP appropriately. Used to get inline tracing fast-path.
62ifeq ($(TARGET_CPU_SMP),true)
63 LOCAL_CFLAGS += -DANDROID_SMP=1
64else
65 LOCAL_CFLAGS += -DANDROID_SMP=0
66endif
67
Mathias Agopiane762be92013-05-09 16:26:45 -070068LOCAL_CFLAGS += -fvisibility=hidden
69
Mathias Agopian65ab4712010-07-14 17:59:35 -070070include $(BUILD_SHARED_LIBRARY)
ty.leec8823992012-10-01 13:54:14 +090071
Mathias Agopian0fc2cb52012-10-21 01:01:38 -070072#
73# build audio resampler test tool
74#
75include $(CLEAR_VARS)
76
77LOCAL_SRC_FILES:= \
78 test-resample.cpp \
79 AudioResampler.cpp.arm \
80 AudioResamplerCubic.cpp.arm \
81 AudioResamplerSinc.cpp.arm
82
83LOCAL_SHARED_LIBRARIES := \
Ying Wangda0dc0a2013-04-09 21:53:49 -070084 libdl \
Mathias Agopian0fc2cb52012-10-21 01:01:38 -070085 libcutils \
Ying Wangda0dc0a2013-04-09 21:53:49 -070086 libutils \
87 liblog
Mathias Agopian0fc2cb52012-10-21 01:01:38 -070088
89LOCAL_MODULE:= test-resample
90
91LOCAL_MODULE_TAGS := optional
92
93include $(BUILD_EXECUTABLE)
94
ty.leec8823992012-10-01 13:54:14 +090095include $(call all-makefiles-under,$(LOCAL_PATH))