summaryrefslogtreecommitdiffstats
path: root/cmds/bootanimation/Android.mk
diff options
context:
space:
mode:
authorMathias Agopian <mathias@google.com>2009-05-21 19:21:59 -0700
committerMathias Agopian <mathias@google.com>2009-05-21 19:21:59 -0700
commit627e7b50be41e4fdee758a1bfad3a55de56b4e27 (patch)
treede5c88b60ad0f5454956eb457090958ebb9fc331 /cmds/bootanimation/Android.mk
parent384bfa270cdcb5dc3bc9ec396b783e25eb2d9b4d (diff)
downloadframeworks_base-627e7b50be41e4fdee758a1bfad3a55de56b4e27.zip
frameworks_base-627e7b50be41e4fdee758a1bfad3a55de56b4e27.tar.gz
frameworks_base-627e7b50be41e4fdee758a1bfad3a55de56b4e27.tar.bz2
split boot animation out of SurfaceFlinger
Conflicts: data/etc/platform.xml
Diffstat (limited to 'cmds/bootanimation/Android.mk')
-rw-r--r--cmds/bootanimation/Android.mk30
1 files changed, 30 insertions, 0 deletions
diff --git a/cmds/bootanimation/Android.mk b/cmds/bootanimation/Android.mk
new file mode 100644
index 0000000..9c94c2e
--- /dev/null
+++ b/cmds/bootanimation/Android.mk
@@ -0,0 +1,30 @@
+LOCAL_PATH:= $(call my-dir)
+include $(CLEAR_VARS)
+
+LOCAL_SRC_FILES:= \
+ bootanimation_main.cpp \
+ BootAnimation.cpp
+
+# need "-lrt" on Linux simulator to pick up clock_gettime
+ifeq ($(TARGET_SIMULATOR),true)
+ ifeq ($(HOST_OS),linux)
+ LOCAL_LDLIBS += -lrt
+ endif
+endif
+
+LOCAL_SHARED_LIBRARIES := \
+ libcutils \
+ libutils \
+ libui \
+ libcorecg \
+ libsgl \
+ libEGL \
+ libGLESv1_CM
+
+LOCAL_C_INCLUDES := \
+ $(call include-path-for, corecg graphics)
+
+LOCAL_MODULE:= bootanimation
+
+
+include $(BUILD_EXECUTABLE)