blob: b8950276180684270621e1d2e436574bfef74d6f [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 \
Glenn Kasten44deb052012-02-05 18:09:08 -080022 AudioPolicyService.cpp \
SathishKumar Mani76b11162012-01-17 10:49:47 -080023 ServiceUtilities.cpp \
Glenn Kastenac602052012-10-01 14:04:31 -070024
Glenn Kastendc998c82012-03-23 18:53:59 -070025LOCAL_SRC_FILES += StateQueue.cpp
26
Eric Laurent6d8b6942011-06-24 07:01:31 -070027LOCAL_C_INCLUDES := \
Glenn Kasten33b38392012-03-13 15:59:35 -070028 $(call include-path-for, audio-effects) \
29 $(call include-path-for, audio-utils)
Eric Laurent6d8b6942011-06-24 07:01:31 -070030
Mathias Agopian65ab4712010-07-14 17:59:35 -070031LOCAL_SHARED_LIBRARIES := \
Glenn Kastenddf887c2014-03-19 09:05:08 -070032 libaudioresampler \
Glenn Kasten3b21c502011-12-15 09:52:39 -080033 libaudioutils \
John Grossman4ff14ba2012-02-08 16:37:41 -080034 libcommon_time_client \
Mathias Agopian65ab4712010-07-14 17:59:35 -070035 libcutils \
36 libutils \
Ying Wangda0dc0a2013-04-09 21:53:49 -070037 liblog \
Mathias Agopian65ab4712010-07-14 17:59:35 -070038 libbinder \
Glenn Kastend12c68a2012-03-23 14:04:27 -070039 libmedia \
Glenn Kasten2dd4bdd2012-08-29 11:10:32 -070040 libnbaio \
Dima Zavinfce7a472011-04-19 22:30:36 -070041 libhardware \
Mathias Agopian65ab4712010-07-14 17:59:35 -070042 libhardware_legacy \
Jeff Brown5e0067b2011-07-11 22:12:16 -070043 libeffects \
Eric Laurentfeb0db62011-07-22 09:04:31 -070044 libpowermanager
Mathias Agopian65ab4712010-07-14 17:59:35 -070045
Dima Zavinfce7a472011-04-19 22:30:36 -070046LOCAL_STATIC_LIBRARIES := \
Glenn Kasten1dc28b72012-04-24 10:01:03 -070047 libscheduling_policy \
Glenn Kasten4d8d0c32011-07-08 15:26:12 -070048 libcpustats \
Dima Zavinfce7a472011-04-19 22:30:36 -070049 libmedia_helper
Mathias Agopian65ab4712010-07-14 17:59:35 -070050
Mathias Agopian65ab4712010-07-14 17:59:35 -070051LOCAL_MODULE:= libaudioflinger
Glenn Kastenaf783aa2014-03-02 19:48:19 -080052LOCAL_32_BIT_ONLY := true
Mathias Agopian65ab4712010-07-14 17:59:35 -070053
Glenn Kasten153b9fe2013-07-15 11:23:36 -070054LOCAL_SRC_FILES += FastMixer.cpp FastMixerState.cpp AudioWatchdog.cpp
Glenn Kasten0a14c4c2012-06-13 14:58:49 -070055
Glenn Kasten97b5d0d2012-03-23 18:54:19 -070056LOCAL_CFLAGS += -DSTATE_QUEUE_INSTANTIATIONS='"StateQueueInstantiations.cpp"'
57
Alex Rayb3a83642012-11-30 19:42:28 -080058# Define ANDROID_SMP appropriately. Used to get inline tracing fast-path.
59ifeq ($(TARGET_CPU_SMP),true)
60 LOCAL_CFLAGS += -DANDROID_SMP=1
61else
62 LOCAL_CFLAGS += -DANDROID_SMP=0
63endif
64
Mathias Agopiane762be92013-05-09 16:26:45 -070065LOCAL_CFLAGS += -fvisibility=hidden
66
Mathias Agopian65ab4712010-07-14 17:59:35 -070067include $(BUILD_SHARED_LIBRARY)
ty.leec8823992012-10-01 13:54:14 +090068
Mathias Agopian0fc2cb52012-10-21 01:01:38 -070069#
70# build audio resampler test tool
71#
72include $(CLEAR_VARS)
73
74LOCAL_SRC_FILES:= \
75 test-resample.cpp \
Mathias Agopian0fc2cb52012-10-21 01:01:38 -070076
77LOCAL_SHARED_LIBRARIES := \
Glenn Kastenddf887c2014-03-19 09:05:08 -070078 libaudioresampler \
Mathias Agopian0fc2cb52012-10-21 01:01:38 -070079
80LOCAL_MODULE:= test-resample
81
82LOCAL_MODULE_TAGS := optional
83
84include $(BUILD_EXECUTABLE)
85
Glenn Kastenddf887c2014-03-19 09:05:08 -070086include $(CLEAR_VARS)
87
88LOCAL_SRC_FILES:= \
89 AudioResampler.cpp.arm \
90 AudioResamplerCubic.cpp.arm \
91 AudioResamplerSinc.cpp.arm
92
93LOCAL_SHARED_LIBRARIES := \
94 libcutils \
95 libdl \
96 liblog
97
98LOCAL_MODULE := libaudioresampler
99
100include $(BUILD_SHARED_LIBRARY)
101
ty.leec8823992012-10-01 13:54:14 +0900102include $(call all-makefiles-under,$(LOCAL_PATH))