be48137beb
moved surfaceflinger, audioflinger, cameraservice all native services should now reside in this location. Change-Id: Icd7336f7289db35df9c8c1857a5122bb8a6f1c86
18 lines
298 B
Makefile
18 lines
298 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
main_surfaceflinger.cpp
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libsurfaceflinger \
|
|
libbinder \
|
|
libutils
|
|
|
|
LOCAL_C_INCLUDES := \
|
|
$(LOCAL_PATH)/../../services/surfaceflinger
|
|
|
|
LOCAL_MODULE:= surfaceflinger
|
|
|
|
include $(BUILD_EXECUTABLE)
|