OSDN Git Service

Merge "Dump KSM stats in the meminfo."
[android-x86/frameworks-base.git] / services / jni / Android.mk
1 LOCAL_PATH:= $(call my-dir)
2 include $(CLEAR_VARS)
3
4 LOCAL_SRC_FILES:= \
5     com_android_server_AlarmManagerService.cpp \
6     com_android_server_BatteryService.cpp \
7     com_android_server_input_InputApplicationHandle.cpp \
8     com_android_server_input_InputManagerService.cpp \
9     com_android_server_input_InputWindowHandle.cpp \
10     com_android_server_LightsService.cpp \
11     com_android_server_PowerManagerService.cpp \
12     com_android_server_SerialService.cpp \
13     com_android_server_SystemServer.cpp \
14     com_android_server_UsbDeviceManager.cpp \
15     com_android_server_UsbHostManager.cpp \
16     com_android_server_VibratorService.cpp \
17     com_android_server_location_GpsLocationProvider.cpp \
18     com_android_server_connectivity_Vpn.cpp \
19     onload.cpp
20
21 LOCAL_C_INCLUDES += \
22     $(JNI_H_INCLUDE) \
23     frameworks/base/services \
24     frameworks/base/core/jni \
25     external/skia/include/core
26
27 LOCAL_SHARED_LIBRARIES := \
28     libandroid_runtime \
29     libandroidfw \
30     libcutils \
31     libhardware \
32     libhardware_legacy \
33     libnativehelper \
34     libsystem_server \
35     libutils \
36     libui \
37     libinput \
38     libskia \
39     libgui \
40     libusbhost
41
42 ifeq ($(WITH_MALLOC_LEAK_CHECK),true)
43     LOCAL_CFLAGS += -DMALLOC_LEAK_CHECK
44 endif
45
46 LOCAL_MODULE:= libandroid_servers
47
48 include $(BUILD_SHARED_LIBRARY)