Mathias Agopian 08965ec67a fixup hardcoded include paths for new project
Change-Id: Id443ec5c99bb4d7653905f1be1f72a029e0cf087
2012-03-07 19:34:36 -08:00

33 lines
668 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 := \
$(base)/services/camera/libcameraservice \
$(base)/services/audioflinger \
$(base)/services/sensorservice \
$(base)/media/libmediaplayerservice \
$(native)/services/surfaceflinger \
$(JNI_H_INCLUDE)
LOCAL_SHARED_LIBRARIES := \
libandroid_runtime \
libsensorservice \
libsurfaceflinger \
libaudioflinger \
libcameraservice \
libmediaplayerservice \
libinput \
libutils \
libbinder \
libcutils
LOCAL_MODULE:= libsystem_server
include $(BUILD_SHARED_LIBRARY)