summaryrefslogtreecommitdiffstats
path: root/libs/ui/Android.mk
diff options
context:
space:
mode:
authorMathias Agopian <mathias@google.com>2012-02-20 16:58:20 -0800
committerMathias Agopian <mathias@google.com>2012-02-20 22:38:43 -0800
commit83c64e6b624a876436d2ef5d2f173b10407e27b4 (patch)
treec4effc3260ab399e8fdae23baf06b076cd87a604 /libs/ui/Android.mk
parent94d0024557f415b8463f085c9784a3e1d02b58c6 (diff)
downloadframeworks_base-83c64e6b624a876436d2ef5d2f173b10407e27b4.zip
frameworks_base-83c64e6b624a876436d2ef5d2f173b10407e27b4.tar.gz
frameworks_base-83c64e6b624a876436d2ef5d2f173b10407e27b4.tar.bz2
frameworks/base refactoring
create the new libandroidfw from parts of libui and libutils Change-Id: I1584995616fff5d527a2aba63921b682a6194d58
Diffstat (limited to 'libs/ui/Android.mk')
-rw-r--r--libs/ui/Android.mk35
1 files changed, 1 insertions, 34 deletions
diff --git a/libs/ui/Android.mk b/libs/ui/Android.mk
index f8b4452..579c315 100644
--- a/libs/ui/Android.mk
+++ b/libs/ui/Android.mk
@@ -13,41 +13,14 @@
# limitations under the License.
LOCAL_PATH:= $(call my-dir)
-
-# libui is partially built for the host (used by build time keymap validation tool)
-# These files are common to host and target builds.
-commonSources:= \
- Input.cpp \
- Keyboard.cpp \
- KeyLayoutMap.cpp \
- KeyCharacterMap.cpp \
- VirtualKeyMap.cpp
-
-# For the host
-# =====================================================
-
-include $(CLEAR_VARS)
-
-LOCAL_SRC_FILES:= $(commonSources)
-
-LOCAL_MODULE:= libui
-
-include $(BUILD_HOST_STATIC_LIBRARY)
-
-
-# For the device
-# =====================================================
-
include $(CLEAR_VARS)
LOCAL_SRC_FILES:= \
- $(commonSources) \
EGLUtils.cpp \
FramebufferNativeWindow.cpp \
GraphicBuffer.cpp \
GraphicBufferAllocator.cpp \
GraphicBufferMapper.cpp \
- InputTransport.cpp \
PixelFormat.cpp \
Rect.cpp \
Region.cpp
@@ -57,13 +30,7 @@ LOCAL_SHARED_LIBRARIES := \
libutils \
libEGL \
libpixelflinger \
- libhardware \
- libhardware_legacy \
- libskia \
- libbinder
-
-LOCAL_C_INCLUDES := \
- external/skia/include/core
+ libhardware
LOCAL_MODULE:= libui