summaryrefslogtreecommitdiffstats
path: root/libs/surfaceflinger_client/Android.mk
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@no-log.org>2011-01-09 23:25:03 +0100
committerDenis 'GNUtoo' Carikli <GNUtoo@no-log.org>2011-01-09 23:32:18 +0100
commit5dbc8f9e4907a455cf187574007d34daf414479a (patch)
treec77faa7b2c536067fd63e9093f845ebd06b60e19 /libs/surfaceflinger_client/Android.mk
parentc6bf87d75456e2ade54acf79beff0d2045466a24 (diff)
downloadframeworks_base-5dbc8f9e4907a455cf187574007d34daf414479a.zip
frameworks_base-5dbc8f9e4907a455cf187574007d34daf414479a.tar.gz
frameworks_base-5dbc8f9e4907a455cf187574007d34daf414479a.tar.bz2
surfaceflinger and libagl: fix bug #11829
The bug #11829 that can be found here: http://code.google.com/p/android/issues/detail?id=11829 causes various graphic artefacts. According to naseer.ahmed it needed modifications in SurfaceFlinger and libagl The modifications comes from: https://www.codeaurora.org/gitweb/quic/la/?p=platform/frameworks/base.git;a=shortlog;h=refs/heads/froyo_almond at commit 33e6506d96d7602284e18ea8c66dbfd04dc72aa3 Change-Id: I703bace69cb7a41ac8ed69ca1e28b98aa618e0f3 Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@no-log.org>
Diffstat (limited to 'libs/surfaceflinger_client/Android.mk')
-rw-r--r--libs/surfaceflinger_client/Android.mk11
1 files changed, 1 insertions, 10 deletions
diff --git a/libs/surfaceflinger_client/Android.mk b/libs/surfaceflinger_client/Android.mk
index 5368280..fe85b34 100644
--- a/libs/surfaceflinger_client/Android.mk
+++ b/libs/surfaceflinger_client/Android.mk
@@ -10,10 +10,6 @@ LOCAL_SRC_FILES:= \
Surface.cpp \
SurfaceComposerClient.cpp
-LOCAL_MODULE:= libsurfaceflinger_client
-
-ifneq ($(BOARD_USES_ECLAIR_LIBCAMERA),true)
-
LOCAL_SHARED_LIBRARIES := \
libcutils \
libutils \
@@ -21,15 +17,10 @@ LOCAL_SHARED_LIBRARIES := \
libhardware \
libui
+LOCAL_MODULE:= libsurfaceflinger_client
ifeq ($(TARGET_SIMULATOR),true)
LOCAL_LDLIBS += -lpthread
endif
include $(BUILD_SHARED_LIBRARY)
-
-else
-
-include $(BUILD_STATIC_LIBRARY)
-
-endif