summaryrefslogtreecommitdiffstats
path: root/cmds
diff options
context:
space:
mode:
authorDerek Sollenberger <djsollen@google.com>2014-02-28 13:23:13 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-02-28 13:23:15 +0000
commitfc9276340897289b8f848fc722152d6fc0f891ed (patch)
tree14cca48e01e4c491bd5ffe9499a96cd2e42e9d91 /cmds
parentef23865154bf5e6c1768023dd69845353cf8c543 (diff)
parenteece0dda56ae29fff6e9003df97594f6ac50b6e2 (diff)
downloadframeworks_base-fc9276340897289b8f848fc722152d6fc0f891ed.zip
frameworks_base-fc9276340897289b8f848fc722152d6fc0f891ed.tar.gz
frameworks_base-fc9276340897289b8f848fc722152d6fc0f891ed.tar.bz2
Merge "Fix includes so that they no longer rely on the global Skia includes directories."
Diffstat (limited to 'cmds')
-rw-r--r--cmds/bootanimation/Android.mk3
-rw-r--r--cmds/bootanimation/BootAnimation.cpp6
2 files changed, 3 insertions, 6 deletions
diff --git a/cmds/bootanimation/Android.mk b/cmds/bootanimation/Android.mk
index d5ff84e..a4e2718 100644
--- a/cmds/bootanimation/Android.mk
+++ b/cmds/bootanimation/Android.mk
@@ -19,9 +19,6 @@ LOCAL_SHARED_LIBRARIES := \
libGLESv1_CM \
libgui
-LOCAL_C_INCLUDES := \
- $(call include-path-for, corecg graphics)
-
LOCAL_MODULE:= bootanimation
diff --git a/cmds/bootanimation/BootAnimation.cpp b/cmds/bootanimation/BootAnimation.cpp
index 125bea6..e12e961 100644
--- a/cmds/bootanimation/BootAnimation.cpp
+++ b/cmds/bootanimation/BootAnimation.cpp
@@ -42,9 +42,9 @@
#include <gui/Surface.h>
#include <gui/SurfaceComposerClient.h>
-#include <core/SkBitmap.h>
-#include <core/SkStream.h>
-#include <core/SkImageDecoder.h>
+#include <SkBitmap.h>
+#include <SkStream.h>
+#include <SkImageDecoder.h>
#include <GLES/gl.h>
#include <GLES/glext.h>