blob: b3a5747e80332705603127ee2e00af7e1345d056 [file] [log] [blame]
The Android Open Source Project2729ea92008-10-21 07:00:00 -07001LOCAL_PATH:= $(call my-dir)
2
3#
4# libmediaplayerservice
5#
6
7include $(CLEAR_VARS)
8
9LOCAL_SRC_FILES:= \
10 MediaPlayerService.cpp \
11 VorbisPlayer.cpp \
12 MidiFile.cpp
13
14ifeq ($(TARGET_OS)-$(TARGET_SIMULATOR),linux-true)
15LOCAL_LDLIBS += -ldl -lpthread
16endif
17
18LOCAL_SHARED_LIBRARIES := \
19 libcutils \
20 libutils \
21 libvorbisidec \
22 libsonivox \
23 libopencoreplayer \
24 libmedia \
25 libandroid_runtime
26
27LOCAL_C_INCLUDES := external/tremor/Tremor \
28 $(call include-path-for, graphics corecg)
29
30LOCAL_MODULE:= libmediaplayerservice
31
32include $(BUILD_SHARED_LIBRARY)
33