summaryrefslogtreecommitdiffstats
path: root/tools/validatekeymaps
diff options
context:
space:
mode:
authorJeff Brown <jeffbrown@google.com>2013-07-01 19:07:15 -0700
committerJeff Brown <jeffbrown@google.com>2013-07-01 20:11:42 -0700
commit9d3b1a424c5c61e24e9659d15fb353026a00d925 (patch)
tree0e543391e3ac7b6ac0bff377e08cd2e233ef7363 /tools/validatekeymaps
parent8f5e3d13e166e4873e130a5ef7c987333dbac917 (diff)
downloadframeworks_base-9d3b1a424c5c61e24e9659d15fb353026a00d925.zip
frameworks_base-9d3b1a424c5c61e24e9659d15fb353026a00d925.tar.gz
frameworks_base-9d3b1a424c5c61e24e9659d15fb353026a00d925.tar.bz2
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 'tools/validatekeymaps')
-rw-r--r--tools/validatekeymaps/Android.mk4
-rw-r--r--tools/validatekeymaps/Main.cpp6
2 files changed, 4 insertions, 6 deletions
diff --git a/tools/validatekeymaps/Android.mk b/tools/validatekeymaps/Android.mk
index 90fbc08..9af721d 100644
--- a/tools/validatekeymaps/Android.mk
+++ b/tools/validatekeymaps/Android.mk
@@ -15,10 +15,8 @@ LOCAL_SRC_FILES := \
LOCAL_CFLAGS := -Wall -Werror
-#LOCAL_C_INCLUDES +=
-
LOCAL_STATIC_LIBRARIES := \
- libandroidfw \
+ libinput \
libutils \
libcutils \
liblog
diff --git a/tools/validatekeymaps/Main.cpp b/tools/validatekeymaps/Main.cpp
index 91e4fda..5b45c55 100644
--- a/tools/validatekeymaps/Main.cpp
+++ b/tools/validatekeymaps/Main.cpp
@@ -14,9 +14,9 @@
* limitations under the License.
*/
-#include <androidfw/KeyCharacterMap.h>
-#include <androidfw/KeyLayoutMap.h>
-#include <androidfw/VirtualKeyMap.h>
+#include <input/KeyCharacterMap.h>
+#include <input/KeyLayoutMap.h>
+#include <input/VirtualKeyMap.h>
#include <utils/PropertyMap.h>
#include <utils/String8.h>