summaryrefslogtreecommitdiffstats
path: root/services/surfaceflinger/Android.mk
diff options
context:
space:
mode:
authorMathias Agopian <mathias@google.com>2013-08-19 17:26:18 -0700
committerMathias Agopian <mathias@google.com>2013-08-20 11:16:45 -0700
commit4f4f0943489d9113c66ac22b58cfba8c21dfa879 (patch)
tree7b99150e05f5949dfff2fd66f8cf9ca6ce486655 /services/surfaceflinger/Android.mk
parent8b308ed70ed782f68c8075aac2a6b66bbfcdb9af (diff)
downloadframeworks_native-4f4f0943489d9113c66ac22b58cfba8c21dfa879.zip
frameworks_native-4f4f0943489d9113c66ac22b58cfba8c21dfa879.tar.gz
frameworks_native-4f4f0943489d9113c66ac22b58cfba8c21dfa879.tar.bz2
SurfaceFlinger now runs in the process's main thread
it used to spawn its own thread and return the main thread to the binder thread pool -- this was confusing the naming of things in the kernel. Bug: 10331839 Change-Id: I2d13a6d73409a38109300fcbe6a04b4c41cb5d00
Diffstat (limited to 'services/surfaceflinger/Android.mk')
-rw-r--r--services/surfaceflinger/Android.mk3
1 files changed, 3 insertions, 0 deletions
diff --git a/services/surfaceflinger/Android.mk b/services/surfaceflinger/Android.mk
index 873bd5d..81b0d14 100644
--- a/services/surfaceflinger/Android.mk
+++ b/services/surfaceflinger/Android.mk
@@ -75,11 +75,14 @@ include $(BUILD_SHARED_LIBRARY)
# build surfaceflinger's executable
include $(CLEAR_VARS)
+LOCAL_CFLAGS:= -DLOG_TAG=\"SurfaceFlinger\"
+
LOCAL_SRC_FILES:= \
main_surfaceflinger.cpp
LOCAL_SHARED_LIBRARIES := \
libsurfaceflinger \
+ liblog \
libbinder \
libutils