Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
2 | |||||
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 3 | include $(CLEAR_VARS) |
4 | |||||
5 | LOCAL_SRC_FILES:= \ | ||||
6 | AudioFlinger.cpp \ | ||||
7 | AudioMixer.cpp.arm \ | ||||
8 | AudioResampler.cpp.arm \ | ||||
Glenn Kasten | 44deb05 | 2012-02-05 18:09:08 -0800 | [diff] [blame] | 9 | AudioPolicyService.cpp \ |
John Grossman | 4ff14ba | 2012-02-08 16:37:41 -0800 | [diff] [blame^] | 10 | AudioBufferProvider.cpp \ |
Glenn Kasten | 44deb05 | 2012-02-05 18:09:08 -0800 | [diff] [blame] | 11 | ServiceUtilities.cpp |
Glenn Kasten | cdf2158 | 2012-02-02 14:01:58 -0800 | [diff] [blame] | 12 | # AudioResamplerSinc.cpp.arm |
13 | # AudioResamplerCubic.cpp.arm | ||||
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 14 | |
Eric Laurent | 6d8b694 | 2011-06-24 07:01:31 -0700 | [diff] [blame] | 15 | LOCAL_C_INCLUDES := \ |
Glenn Kasten | 3b21c50 | 2011-12-15 09:52:39 -0800 | [diff] [blame] | 16 | system/media/audio_effects/include \ |
17 | system/media/audio_utils/include | ||||
Eric Laurent | 6d8b694 | 2011-06-24 07:01:31 -0700 | [diff] [blame] | 18 | |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 19 | LOCAL_SHARED_LIBRARIES := \ |
Glenn Kasten | 3b21c50 | 2011-12-15 09:52:39 -0800 | [diff] [blame] | 20 | libaudioutils \ |
John Grossman | 4ff14ba | 2012-02-08 16:37:41 -0800 | [diff] [blame^] | 21 | libcommon_time_client \ |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 22 | libcutils \ |
23 | libutils \ | ||||
24 | libbinder \ | ||||
25 | libmedia \ | ||||
Dima Zavin | fce7a47 | 2011-04-19 22:30:36 -0700 | [diff] [blame] | 26 | libhardware \ |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 27 | libhardware_legacy \ |
Jeff Brown | 5e0067b | 2011-07-11 22:12:16 -0700 | [diff] [blame] | 28 | libeffects \ |
Eric Laurent | feb0db6 | 2011-07-22 09:04:31 -0700 | [diff] [blame] | 29 | libdl \ |
30 | libpowermanager | ||||
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 31 | |
Dima Zavin | fce7a47 | 2011-04-19 22:30:36 -0700 | [diff] [blame] | 32 | LOCAL_STATIC_LIBRARIES := \ |
Glenn Kasten | 4d8d0c3 | 2011-07-08 15:26:12 -0700 | [diff] [blame] | 33 | libcpustats \ |
Dima Zavin | fce7a47 | 2011-04-19 22:30:36 -0700 | [diff] [blame] | 34 | libmedia_helper |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 35 | |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 36 | LOCAL_MODULE:= libaudioflinger |
37 | |||||
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 38 | include $(BUILD_SHARED_LIBRARY) |