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:= \ |
James Dong | 559bf28 | 2012-03-28 10:29:14 -0700 | [diff] [blame] | 10 | ActivityManager.cpp \ |
Andreas Huber | ed3e3e0 | 2012-03-26 11:13:27 -0700 | [diff] [blame] | 11 | Crypto.cpp \ |
Andreas Huber | efbb781 | 2012-09-18 10:36:32 -0700 | [diff] [blame^] | 12 | HDCP.cpp \ |
John Grossman | 44a7e42 | 2012-06-21 17:29:24 -0700 | [diff] [blame] | 13 | MediaPlayerFactory.cpp \ |
Andreas Huber | 47f59cf | 2009-08-07 09:30:32 -0700 | [diff] [blame] | 14 | MediaPlayerService.cpp \ |
Andreas Huber | d7bee3a | 2012-08-29 11:41:50 -0700 | [diff] [blame] | 15 | MediaRecorderClient.cpp \ |
Jianhong Jiang | 84c18d6 | 2009-04-13 19:01:51 -0700 | [diff] [blame] | 16 | MetadataRetrieverClient.cpp \ |
Andreas Huber | 608d77b | 2010-06-23 16:40:57 -0700 | [diff] [blame] | 17 | MidiFile.cpp \ |
Andreas Huber | d7bee3a | 2012-08-29 11:41:50 -0700 | [diff] [blame] | 18 | MidiMetadataRetriever.cpp \ |
| 19 | RemoteDisplay.cpp \ |
Andreas Huber | 608d77b | 2010-06-23 16:40:57 -0700 | [diff] [blame] | 20 | StagefrightPlayer.cpp \ |
Andreas Huber | d7bee3a | 2012-08-29 11:41:50 -0700 | [diff] [blame] | 21 | StagefrightRecorder.cpp \ |
| 22 | TestPlayerStub.cpp \ |
Andreas Huber | 8f0e4aa | 2009-09-11 09:54:52 -0700 | [diff] [blame] | 23 | |
Andreas Huber | d7bee3a | 2012-08-29 11:41:50 -0700 | [diff] [blame] | 24 | LOCAL_SHARED_LIBRARIES := \ |
| 25 | libbinder \ |
| 26 | libcamera_client \ |
| 27 | libcutils \ |
| 28 | libdl \ |
| 29 | libgui \ |
| 30 | libmedia \ |
| 31 | libmedia_native \ |
| 32 | libsonivox \ |
| 33 | libstagefright \ |
| 34 | libstagefright_foundation \ |
| 35 | libstagefright_omx \ |
| 36 | libstagefright_wfd \ |
| 37 | libutils \ |
| 38 | libvorbisidec \ |
Jean-Baptiste Queru | 6c5b210 | 2009-03-21 11:40:18 -0700 | [diff] [blame] | 39 | |
Andreas Huber | d7bee3a | 2012-08-29 11:41:50 -0700 | [diff] [blame] | 40 | LOCAL_STATIC_LIBRARIES := \ |
| 41 | libstagefright_nuplayer \ |
| 42 | libstagefright_rtsp \ |
Andreas Huber | 39ddf8e | 2010-08-04 10:14:30 -0700 | [diff] [blame] | 43 | |
Andreas Huber | d7bee3a | 2012-08-29 11:41:50 -0700 | [diff] [blame] | 44 | LOCAL_C_INCLUDES := \ |
| 45 | $(call include-path-for, graphics corecg) \ |
| 46 | $(TOP)/frameworks/av/media/libstagefright/include \ |
| 47 | $(TOP)/frameworks/av/media/libstagefright/rtsp \ |
| 48 | $(TOP)/frameworks/av/media/libstagefright/wifi-display \ |
| 49 | $(TOP)/frameworks/native/include/media/openmax \ |
| 50 | $(TOP)/external/tremolo/Tremolo \ |
Gloria Wang | 9636054 | 2010-02-08 14:37:41 -0800 | [diff] [blame] | 51 | |
The Android Open Source Project | 2729ea9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 52 | LOCAL_MODULE:= libmediaplayerservice |
| 53 | |
The Android Open Source Project | 2729ea9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 54 | include $(BUILD_SHARED_LIBRARY) |
| 55 | |
Andreas Huber | f933441 | 2010-12-15 15:17:42 -0800 | [diff] [blame] | 56 | include $(call all-makefiles-under,$(LOCAL_PATH)) |