The Android Open Source Project | 2729ea9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | |
| 3 | # |
| 4 | # libmediaplayerservice |
| 5 | # |
| 6 | |
| 7 | include $(CLEAR_VARS) |
| 8 | |
| 9 | LOCAL_SRC_FILES:= \ |
Andreas Huber | 47f59cf | 2009-08-07 09:30:32 -0700 | [diff] [blame] | 10 | MediaRecorderClient.cpp \ |
| 11 | MediaPlayerService.cpp \ |
Jianhong Jiang | 84c18d6 | 2009-04-13 19:01:51 -0700 | [diff] [blame] | 12 | MetadataRetrieverClient.cpp \ |
Andreas Huber | 47f59cf | 2009-08-07 09:30:32 -0700 | [diff] [blame] | 13 | StagefrightPlayer.cpp \ |
| 14 | TestPlayerStub.cpp \ |
| 15 | VorbisPlayer.cpp \ |
James Dong | 148c1a2 | 2009-09-06 14:29:45 -0700 | [diff] [blame^] | 16 | VorbisMetadataRetriever.cpp \ |
| 17 | MidiMetadataRetriever.cpp \ |
Jianhong Jiang | 84c18d6 | 2009-04-13 19:01:51 -0700 | [diff] [blame] | 18 | MidiFile.cpp |
Jean-Baptiste Queru | 6c5b210 | 2009-03-21 11:40:18 -0700 | [diff] [blame] | 19 | |
The Android Open Source Project | 2729ea9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 20 | ifeq ($(TARGET_OS)-$(TARGET_SIMULATOR),linux-true) |
| 21 | LOCAL_LDLIBS += -ldl -lpthread |
| 22 | endif |
| 23 | |
Andreas Huber | 47f59cf | 2009-08-07 09:30:32 -0700 | [diff] [blame] | 24 | LOCAL_SHARED_LIBRARIES := \ |
| 25 | libcutils \ |
| 26 | libutils \ |
| 27 | libbinder \ |
| 28 | libvorbisidec \ |
| 29 | libsonivox \ |
| 30 | libopencore_player \ |
| 31 | libopencore_author \ |
| 32 | libmedia \ |
| 33 | libandroid_runtime \ |
| 34 | libstagefright \ |
| 35 | libstagefright_omx |
Jean-Baptiste Queru | 6c5b210 | 2009-03-21 11:40:18 -0700 | [diff] [blame] | 36 | |
Nicolas Catania | 14d2747 | 2009-07-13 14:37:49 -0700 | [diff] [blame] | 37 | ifneq ($(TARGET_SIMULATOR),true) |
| 38 | LOCAL_SHARED_LIBRARIES += libdl |
| 39 | endif |
| 40 | |
Andreas Huber | 47f59cf | 2009-08-07 09:30:32 -0700 | [diff] [blame] | 41 | LOCAL_C_INCLUDES := external/tremor/Tremor \ |
| 42 | $(call include-path-for, graphics corecg) \ |
| 43 | $(TOP)/external/opencore/extern_libs_v2/khronos/openmax/include \ |
| 44 | $(TOP)/frameworks/base/media/libstagefright/omx |
Jean-Baptiste Queru | 6c5b210 | 2009-03-21 11:40:18 -0700 | [diff] [blame] | 45 | |
The Android Open Source Project | 2729ea9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 46 | LOCAL_MODULE:= libmediaplayerservice |
| 47 | |
The Android Open Source Project | 2729ea9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 48 | include $(BUILD_SHARED_LIBRARY) |
| 49 | |