Android.mk revision 950fe8f8d4d654e645fa7205ca275b5a03feb214
1# This file is included by the top level services directory to collect source
2# files
3LOCAL_REL_DIR := core/jni
4
5LOCAL_CFLAGS += -Wno-unused-parameter
6
7LOCAL_SRC_FILES += \
8    $(LOCAL_REL_DIR)/com_android_server_AlarmManagerService.cpp \
9    $(LOCAL_REL_DIR)/com_android_server_AssetAtlasService.cpp \
10    $(LOCAL_REL_DIR)/com_android_server_ConsumerIrService.cpp \
11    $(LOCAL_REL_DIR)/com_android_server_dreams_McuHal.cpp \
12    $(LOCAL_REL_DIR)/com_android_server_input_InputApplicationHandle.cpp \
13    $(LOCAL_REL_DIR)/com_android_server_input_InputManagerService.cpp \
14    $(LOCAL_REL_DIR)/com_android_server_input_InputWindowHandle.cpp \
15    $(LOCAL_REL_DIR)/com_android_server_lights_LightsService.cpp \
16    $(LOCAL_REL_DIR)/com_android_server_power_PowerManagerService.cpp \
17    $(LOCAL_REL_DIR)/com_android_server_SerialService.cpp \
18    $(LOCAL_REL_DIR)/com_android_server_SystemServer.cpp \
19    $(LOCAL_REL_DIR)/com_android_server_UsbDeviceManager.cpp \
20    $(LOCAL_REL_DIR)/com_android_server_UsbHostManager.cpp \
21    $(LOCAL_REL_DIR)/com_android_server_VibratorService.cpp \
22    $(LOCAL_REL_DIR)/com_android_server_location_GpsLocationProvider.cpp \
23    $(LOCAL_REL_DIR)/com_android_server_location_FlpHardwareProvider.cpp \
24    $(LOCAL_REL_DIR)/com_android_server_connectivity_Vpn.cpp \
25    $(LOCAL_REL_DIR)/onload.cpp
26
27LOCAL_C_INCLUDES += \
28    $(JNI_H_INCLUDE) \
29    frameworks/base/services \
30    frameworks/base/libs \
31    frameworks/base/core/jni \
32    frameworks/native/services \
33    libcore/include \
34    libcore/include/libsuspend \
35	$(call include-path-for, libhardware)/hardware \
36	$(call include-path-for, libhardware_legacy)/hardware_legacy \
37
38LOCAL_SHARED_LIBRARIES += \
39    libandroid_runtime \
40    libandroidfw \
41    libbinder \
42    libcutils \
43    liblog \
44    libhardware \
45    libhardware_legacy \
46    libnativehelper \
47    libutils \
48    libui \
49    libinput \
50    libinputflinger \
51    libinputservice \
52    libsensorservice \
53    libskia \
54    libgui \
55    libusbhost \
56    libsuspend \
57    libEGL \
58    libGLESv2
59
60