| The Android Open Source Project | 54b6cfa | 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 | 0d596d4 | 2009-08-07 09:30:32 -0700 | [diff] [blame] | 10 | MediaRecorderClient.cpp \ |
| 11 | MediaPlayerService.cpp \ |
| Jianhong Jiang | 3ca47d1 | 2009-04-13 19:01:51 -0700 | [diff] [blame] | 12 | MetadataRetrieverClient.cpp \ |
| Andreas Huber | 0d596d4 | 2009-08-07 09:30:32 -0700 | [diff] [blame] | 13 | StagefrightPlayer.cpp \ |
| 14 | TestPlayerStub.cpp \ |
| 15 | VorbisPlayer.cpp \ |
| Jianhong Jiang | 3ca47d1 | 2009-04-13 19:01:51 -0700 | [diff] [blame] | 16 | MidiFile.cpp |
| Jean-Baptiste Queru | 680f8c7 | 2009-03-21 11:40:18 -0700 | [diff] [blame] | 17 | |
| The Android Open Source Project | 54b6cfa | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 18 | ifeq ($(TARGET_OS)-$(TARGET_SIMULATOR),linux-true) |
| 19 | LOCAL_LDLIBS += -ldl -lpthread |
| 20 | endif |
| 21 | |
| Andreas Huber | 0d596d4 | 2009-08-07 09:30:32 -0700 | [diff] [blame] | 22 | LOCAL_SHARED_LIBRARIES := \ |
| 23 | libcutils \ |
| 24 | libutils \ |
| 25 | libbinder \ |
| 26 | libvorbisidec \ |
| 27 | libsonivox \ |
| 28 | libopencore_player \ |
| 29 | libopencore_author \ |
| 30 | libmedia \ |
| 31 | libandroid_runtime \ |
| 32 | libstagefright \ |
| 33 | libstagefright_omx |
| Jean-Baptiste Queru | 680f8c7 | 2009-03-21 11:40:18 -0700 | [diff] [blame] | 34 | |
| Nicolas Catania | 8f5fcab | 2009-07-13 14:37:49 -0700 | [diff] [blame] | 35 | ifneq ($(TARGET_SIMULATOR),true) |
| 36 | LOCAL_SHARED_LIBRARIES += libdl |
| 37 | endif |
| 38 | |
| Andreas Huber | 0d596d4 | 2009-08-07 09:30:32 -0700 | [diff] [blame] | 39 | LOCAL_C_INCLUDES := external/tremor/Tremor \ |
| 40 | $(call include-path-for, graphics corecg) \ |
| 41 | $(TOP)/external/opencore/extern_libs_v2/khronos/openmax/include \ |
| 42 | $(TOP)/frameworks/base/media/libstagefright/omx |
| Jean-Baptiste Queru | 680f8c7 | 2009-03-21 11:40:18 -0700 | [diff] [blame] | 43 | |
| The Android Open Source Project | 54b6cfa | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 44 | LOCAL_MODULE:= libmediaplayerservice |
| 45 | |
| The Android Open Source Project | 54b6cfa | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 46 | include $(BUILD_SHARED_LIBRARY) |
| 47 | |