blob: 1df32bbc272dc0a6c3d6a5ddfde20bda4bf04855 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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)
|