The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
| 4 | LOCAL_SRC_FILES:= \ |
| 5 | main_mediaserver.cpp |
| 6 | |
| 7 | LOCAL_SHARED_LIBRARIES := \ |
| 8 | libaudioflinger \ |
| 9 | libcameraservice \ |
| 10 | libmediaplayerservice \ |
Mathias Agopian | 615a9bf | 2009-05-18 15:08:03 -0700 | [diff] [blame] | 11 | libutils \ |
| 12 | libbinder |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 13 | |
Glenn Kasten | 0e93502 | 2012-03-13 16:09:39 -0700 | [diff] [blame^] | 14 | # FIXME The duplicate audioflinger is temporary |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 15 | LOCAL_C_INCLUDES := \ |
Glenn Kasten | 0e93502 | 2012-03-13 16:09:39 -0700 | [diff] [blame^] | 16 | frameworks/native/services/audioflinger \ |
| 17 | frameworks/base/services/audioflinger \ |
| 18 | frameworks/base/services/camera/libcameraservice \ |
| 19 | frameworks/base/media/libmediaplayerservice |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 20 | |
| 21 | LOCAL_MODULE:= mediaserver |
| 22 | |
| 23 | include $(BUILD_EXECUTABLE) |