The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
| 4 | LOCAL_SRC_FILES:= \ |
niko | bc72692 | 2009-07-20 15:07:26 -0700 | [diff] [blame] | 5 | AudioTrack.cpp \ |
| 6 | IAudioFlinger.cpp \ |
| 7 | IAudioFlingerClient.cpp \ |
| 8 | IAudioTrack.cpp \ |
| 9 | IAudioRecord.cpp \ |
| 10 | AudioRecord.cpp \ |
| 11 | AudioSystem.cpp \ |
| 12 | mediaplayer.cpp \ |
| 13 | IMediaPlayerService.cpp \ |
| 14 | IMediaPlayerClient.cpp \ |
James Dong | fe1bafe | 2010-06-25 17:06:47 -0700 | [diff] [blame] | 15 | IMediaRecorderClient.cpp \ |
niko | bc72692 | 2009-07-20 15:07:26 -0700 | [diff] [blame] | 16 | IMediaPlayer.cpp \ |
| 17 | IMediaRecorder.cpp \ |
Andreas Huber | 52b52cd | 2010-11-23 11:41:34 -0800 | [diff] [blame] | 18 | IStreamSource.cpp \ |
niko | bc72692 | 2009-07-20 15:07:26 -0700 | [diff] [blame] | 19 | Metadata.cpp \ |
| 20 | mediarecorder.cpp \ |
| 21 | IMediaMetadataRetriever.cpp \ |
| 22 | mediametadataretriever.cpp \ |
| 23 | ToneGenerator.cpp \ |
| 24 | JetPlayer.cpp \ |
Eric Laurent | a553c25 | 2009-07-17 12:17:14 -0700 | [diff] [blame] | 25 | IOMX.cpp \ |
Andreas Huber | bfb9fb1 | 2009-12-03 11:31:19 -0800 | [diff] [blame] | 26 | IAudioPolicyService.cpp \ |
| 27 | MediaScanner.cpp \ |
| 28 | MediaScannerClient.cpp \ |
James Dong | 34bbc22 | 2010-01-15 18:13:58 -0800 | [diff] [blame] | 29 | autodetect.cpp \ |
James Dong | c371194 | 2010-01-19 17:45:38 -0800 | [diff] [blame] | 30 | IMediaDeathNotifier.cpp \ |
Eric Laurent | c0f3438 | 2010-05-21 07:47:50 -0700 | [diff] [blame] | 31 | MediaProfiles.cpp \ |
| 32 | IEffect.cpp \ |
Eric Laurent | 948235c | 2010-06-09 00:17:29 -0700 | [diff] [blame] | 33 | IEffectClient.cpp \ |
Eric Laurent | df9b81c | 2010-07-02 08:12:41 -0700 | [diff] [blame] | 34 | AudioEffect.cpp \ |
Chia-chi Yeh | 58d3bd0 | 2010-08-19 15:34:10 +0800 | [diff] [blame] | 35 | Visualizer.cpp \ |
| 36 | fixedfft.cpp.arm |
Andreas Huber | bfb9fb1 | 2009-12-03 11:31:19 -0800 | [diff] [blame] | 37 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 38 | LOCAL_SHARED_LIBRARIES := \ |
Andreas Huber | ae9d507 | 2010-12-06 10:36:06 -0800 | [diff] [blame] | 39 | libui libcutils libutils libbinder libsonivox libicuuc libexpat \ |
Glenn Kasten | cc562a3 | 2011-02-08 17:26:17 -0800 | [diff] [blame] | 40 | libsurfaceflinger_client libcamera_client libstagefright_foundation \ |
| 41 | libgui |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 42 | |
| 43 | LOCAL_MODULE:= libmedia |
| 44 | |
| 45 | ifeq ($(TARGET_OS)-$(TARGET_SIMULATOR),linux-true) |
Mathias Agopian | ac2dd4d | 2009-07-13 22:58:25 -0700 | [diff] [blame] | 46 | LOCAL_LDLIBS += -ldl -lpthread |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 47 | endif |
| 48 | |
| 49 | ifneq ($(TARGET_SIMULATOR),true) |
| 50 | LOCAL_SHARED_LIBRARIES += libdl |
| 51 | endif |
| 52 | |
| 53 | LOCAL_C_INCLUDES := \ |
Marco Nelissen | c39d2e3 | 2009-09-20 10:42:13 -0700 | [diff] [blame] | 54 | $(JNI_H_INCLUDE) \ |
| 55 | $(call include-path-for, graphics corecg) \ |
Andreas Huber | a4f391c | 2010-10-15 13:31:29 -0700 | [diff] [blame] | 56 | $(TOP)/frameworks/base/include/media/stagefright/openmax \ |
James Dong | c371194 | 2010-01-19 17:45:38 -0800 | [diff] [blame] | 57 | external/icu4c/common \ |
| 58 | external/expat/lib |
Marco Nelissen | c39d2e3 | 2009-09-20 10:42:13 -0700 | [diff] [blame] | 59 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 60 | include $(BUILD_SHARED_LIBRARY) |