Android.mk revision fa25bf5382467b1018bd9af7f1cb30a23d7d59f7
1LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_SRC_FILES:= \
5    com_android_server_AlarmManagerService.cpp \
6    com_android_server_BatteryService.cpp \
7    com_android_server_display_SurfaceFlingerDisplayAdapter.cpp \
8    com_android_server_input_InputApplicationHandle.cpp \
9    com_android_server_input_InputManagerService.cpp \
10    com_android_server_input_InputWindowHandle.cpp \
11    com_android_server_LightsService.cpp \
12    com_android_server_power_PowerManagerService.cpp \
13    com_android_server_SerialService.cpp \
14    com_android_server_SystemServer.cpp \
15    com_android_server_UsbDeviceManager.cpp \
16    com_android_server_UsbHostManager.cpp \
17    com_android_server_VibratorService.cpp \
18    com_android_server_location_GpsLocationProvider.cpp \
19    com_android_server_connectivity_Vpn.cpp \
20    onload.cpp
21
22LOCAL_C_INCLUDES += \
23    $(JNI_H_INCLUDE) \
24    frameworks/base/services \
25    frameworks/base/core/jni \
26    external/skia/include/core \
27    libcore/include \
28    libcore/include/libsuspend \
29	$(call include-path-for, libhardware)/hardware \
30	$(call include-path-for, libhardware_legacy)/hardware_legacy \
31
32LOCAL_SHARED_LIBRARIES := \
33    libandroid_runtime \
34    libandroidfw \
35    libcutils \
36    libhardware \
37    libhardware_legacy \
38    libnativehelper \
39    libsystem_server \
40    libutils \
41    libui \
42    libinput \
43    libskia \
44    libgui \
45    libusbhost \
46    libsuspend
47
48ifeq ($(WITH_MALLOC_LEAK_CHECK),true)
49    LOCAL_CFLAGS += -DMALLOC_LEAK_CHECK
50endif
51
52LOCAL_MODULE:= libandroid_servers
53
54include $(BUILD_SHARED_LIBRARY)
55