blob: f173e2e1abe489b1a5e1fc6b43c4417a21ee0a27 [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:= \
James Dong559bf282012-03-28 10:29:14 -070010 ActivityManager.cpp \
Andreas Hubered3e3e02012-03-26 11:13:27 -070011 Crypto.cpp \
Andreas Huber47f59cf2009-08-07 09:30:32 -070012 MediaRecorderClient.cpp \
13 MediaPlayerService.cpp \
Jianhong Jiang84c18d62009-04-13 19:01:51 -070014 MetadataRetrieverClient.cpp \
Andreas Huber47f59cf2009-08-07 09:30:32 -070015 TestPlayerStub.cpp \
Andreas Huber608d77b2010-06-23 16:40:57 -070016 MidiMetadataRetriever.cpp \
17 MidiFile.cpp \
18 StagefrightPlayer.cpp \
Andreas Huber30ab6622009-11-16 15:43:38 -080019 StagefrightRecorder.cpp
Andreas Huber8f0e4aa2009-09-11 09:54:52 -070020
Mathias Agopian3cf61352010-02-09 17:46:37 -080021LOCAL_SHARED_LIBRARIES := \
22 libcutils \
23 libutils \
24 libbinder \
25 libvorbisidec \
26 libsonivox \
27 libmedia \
Glenn Kastenb12153e2012-03-16 11:42:24 -070028 libmedia_native \
James Dongc32cd792010-04-26 17:48:26 -070029 libcamera_client \
Mathias Agopian3cf61352010-02-09 17:46:37 -080030 libstagefright \
31 libstagefright_omx \
Mathias Agopian5f7fcf22011-03-25 18:42:40 -070032 libstagefright_foundation \
Jeff Brown5e0067b2011-07-11 22:12:16 -070033 libgui \
John Grossman761defc2012-02-09 15:09:05 -080034 libdl \
35 libaah_rtp
Jean-Baptiste Queru6c5b2102009-03-21 11:40:18 -070036
Andreas Huber39ddf8e2010-08-04 10:14:30 -070037LOCAL_STATIC_LIBRARIES := \
Andreas Huberf9334412010-12-15 15:17:42 -080038 libstagefright_nuplayer \
Andreas Huber2bfdd422011-10-11 15:24:07 -070039 libstagefright_rtsp \
Andreas Huber39ddf8e2010-08-04 10:14:30 -070040
James Dong6c6b4d02012-03-12 14:37:53 -070041LOCAL_C_INCLUDES := \
Andreas Huber47f59cf2009-08-07 09:30:32 -070042 $(call include-path-for, graphics corecg) \
James Dong559bf282012-03-28 10:29:14 -070043 $(TOP)/frameworks/av/media/libstagefright/include \
44 $(TOP)/frameworks/av/media/libstagefright/rtsp \
James Dong6c6b4d02012-03-12 14:37:53 -070045 $(TOP)/frameworks/native/include/media/openmax \
Andreas Hubered3e3e02012-03-26 11:13:27 -070046 $(TOP)/external/tremolo/Tremolo \
Gloria Wang96360542010-02-08 14:37:41 -080047
The Android Open Source Project2729ea92008-10-21 07:00:00 -070048LOCAL_MODULE:= libmediaplayerservice
49
The Android Open Source Project2729ea92008-10-21 07:00:00 -070050include $(BUILD_SHARED_LIBRARY)
51
Andreas Huberf9334412010-12-15 15:17:42 -080052include $(call all-makefiles-under,$(LOCAL_PATH))
53