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:= \ |
The Android Open Source Project | 7b5eb02 | 2008-12-17 18:05:43 -0800 | [diff] [blame^] | 10 | MediaRecorderClient.cpp \ |
The Android Open Source Project | 2729ea9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 11 | MediaPlayerService.cpp \ |
The Android Open Source Project | 7b5eb02 | 2008-12-17 18:05:43 -0800 | [diff] [blame^] | 12 | MetadataRetrieverClient.cpp \ |
The Android Open Source Project | 2729ea9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 13 | VorbisPlayer.cpp \ |
| 14 | MidiFile.cpp |
| 15 | |
| 16 | ifeq ($(TARGET_OS)-$(TARGET_SIMULATOR),linux-true) |
| 17 | LOCAL_LDLIBS += -ldl -lpthread |
| 18 | endif |
| 19 | |
| 20 | LOCAL_SHARED_LIBRARIES := \ |
| 21 | libcutils \ |
| 22 | libutils \ |
| 23 | libvorbisidec \ |
| 24 | libsonivox \ |
| 25 | libopencoreplayer \ |
The Android Open Source Project | 7b5eb02 | 2008-12-17 18:05:43 -0800 | [diff] [blame^] | 26 | libopencoreauthor \ |
The Android Open Source Project | 2729ea9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 27 | libmedia \ |
| 28 | libandroid_runtime |
| 29 | |
| 30 | LOCAL_C_INCLUDES := external/tremor/Tremor \ |
| 31 | $(call include-path-for, graphics corecg) |
| 32 | |
| 33 | LOCAL_MODULE:= libmediaplayerservice |
| 34 | |
| 35 | include $(BUILD_SHARED_LIBRARY) |
| 36 | |