diff options
author | Jeff Brown <jeffbrown@google.com> | 2013-07-01 19:07:15 -0700 |
---|---|---|
committer | Jeff Brown <jeffbrown@google.com> | 2013-07-01 20:11:42 -0700 |
commit | 9d3b1a424c5c61e24e9659d15fb353026a00d925 (patch) | |
tree | 0e543391e3ac7b6ac0bff377e08cd2e233ef7363 /libs/androidfw/CursorWindow.cpp | |
parent | 8f5e3d13e166e4873e130a5ef7c987333dbac917 (diff) |
Move input library code to frameworks/native.
No longer compile libandroidfw as a static library on the device
since it already exists as a shared library. Keeping the static
library would force us to provide a static library version of
libinput for the device as well which doesn't make sense.
Change-Id: I3517881b87b47dcc209d80dbd0ac6b5cf29a766f
Diffstat (limited to 'libs/androidfw/CursorWindow.cpp')
-rw-r--r-- | libs/androidfw/CursorWindow.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/androidfw/CursorWindow.cpp b/libs/androidfw/CursorWindow.cpp index 047a4c84457a..0f54edb6f915 100644 --- a/libs/androidfw/CursorWindow.cpp +++ b/libs/androidfw/CursorWindow.cpp @@ -17,8 +17,9 @@ #undef LOG_TAG #define LOG_TAG "CursorWindow" -#include <utils/Log.h> #include <androidfw/CursorWindow.h> +#include <binder/Parcel.h> +#include <utils/Log.h> #include <cutils/ashmem.h> #include <sys/mman.h> |