Files
frameworks_base/cmds/system_server/library/Android.mk
Mathias Agopian 6d6b749b24 move native services under services/
moved surfaceflinger, audioflinger, cameraservice

all native services should now reside in this location.

Change-Id: Icd7336f7289db35df9c8c1857a5122bb8a6f1c86
2010-07-22 15:28:19 -07:00

29 lines
555 B
Makefile

LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_SRC_FILES:= \
system_init.cpp
base = $(LOCAL_PATH)/../../..
LOCAL_C_INCLUDES := \
$(base)/services/camera/libcameraservice \
$(base)/services/audioflinger \
$(base)/services/surfaceflinger \
$(base)/media/libmediaplayerservice \
$(JNI_H_INCLUDE)
LOCAL_SHARED_LIBRARIES := \
libandroid_runtime \
libsurfaceflinger \
libaudioflinger \
libcameraservice \
libmediaplayerservice \
libutils \
libbinder \
libcutils
LOCAL_MODULE:= libsystem_server
include $(BUILD_SHARED_LIBRARY)