The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 3 | include $(CLEAR_VARS) |
| 4 | |
| 5 | LOCAL_SRC_FILES:= \ |
| 6 | AudioFlinger.cpp \ |
| 7 | AudioMixer.cpp.arm \ |
| 8 | AudioResampler.cpp.arm \ |
| 9 | AudioResamplerSinc.cpp.arm \ |
Eric Laurent | a553c25 | 2009-07-17 12:17:14 -0700 | [diff] [blame] | 10 | AudioResamplerCubic.cpp.arm \ |
Mike J. Chen | 7bce396 | 2011-08-15 13:28:26 -0700 | [diff] [blame] | 11 | AudioPolicyService.cpp \ |
| 12 | AudioBufferProvider.cpp |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 13 | |
Eric Laurent | 5cc0526 | 2011-06-24 07:01:31 -0700 | [diff] [blame] | 14 | LOCAL_C_INCLUDES := \ |
| 15 | system/media/audio_effects/include |
| 16 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 17 | LOCAL_SHARED_LIBRARIES := \ |
John Grossman | 232f869 | 2012-01-17 18:52:32 -0800 | [diff] [blame] | 18 | libcommon_time_client \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 19 | libcutils \ |
| 20 | libutils \ |
Glenn Kasten | 871c16c | 2010-03-05 12:18:01 -0800 | [diff] [blame] | 21 | libbinder \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 22 | libmedia \ |
Dima Zavin | 24fc2fb | 2011-04-19 22:30:36 -0700 | [diff] [blame] | 23 | libhardware \ |
Eric Laurent | 65b6545 | 2010-06-01 23:49:17 -0700 | [diff] [blame] | 24 | libhardware_legacy \ |
Jeff Brown | bd882b1 | 2011-07-11 22:12:16 -0700 | [diff] [blame] | 25 | libeffects \ |
Eric Laurent | 6dbdc40 | 2011-07-22 09:04:31 -0700 | [diff] [blame] | 26 | libdl \ |
John Grossman | 232f869 | 2012-01-17 18:52:32 -0800 | [diff] [blame] | 27 | libpowermanager |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 28 | |
Dima Zavin | 24fc2fb | 2011-04-19 22:30:36 -0700 | [diff] [blame] | 29 | LOCAL_STATIC_LIBRARIES := \ |
Glenn Kasten | da494f9 | 2011-07-08 15:26:12 -0700 | [diff] [blame] | 30 | libcpustats \ |
Dima Zavin | 24fc2fb | 2011-04-19 22:30:36 -0700 | [diff] [blame] | 31 | libmedia_helper |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 32 | |
| 33 | LOCAL_MODULE:= libaudioflinger |
| 34 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 35 | include $(BUILD_SHARED_LIBRARY) |