Mathias Agopian 4f741c3c22 move sensorservice to the frameworks/native project
Change-Id: I285c190904b2b6b92df3e40154d178407a712f6e
2012-06-28 15:10:44 -07:00

27 lines
484 B
Makefile

LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_SRC_FILES:= \
system_init.cpp
base = $(LOCAL_PATH)/../../..
native = $(LOCAL_PATH)/../../../../native
LOCAL_C_INCLUDES := \
$(native)/services/sensorservice \
$(native)/services/surfaceflinger \
$(JNI_H_INCLUDE)
LOCAL_SHARED_LIBRARIES := \
libandroid_runtime \
libsensorservice \
libsurfaceflinger \
libinput \
libutils \
libbinder \
libcutils
LOCAL_MODULE:= libsystem_server
include $(BUILD_SHARED_LIBRARY)