Link libinput as static_lib for libinput_tests

When doing test-driven development, it's often needed to update the
libinput library when iterating on the CL.

Link libinput statically to allow for simpler invocation of the tests.
Now, 'atest' will use the latest version of libinput when running
libinput_tests, without having to do "adb sync".

Bug: 167946721
Test: atest libinput_tests
Change-Id: I9f6335f163d197d82f7654c7ad3cda0d19ff3852
diff --git a/libs/input/tests/Android.bp b/libs/input/tests/Android.bp
index 9782c1a..7ff5ab6 100644
--- a/libs/input/tests/Android.bp
+++ b/libs/input/tests/Android.bp
@@ -19,13 +19,16 @@
         "-Wextra",
         "-Werror",
     ],
-    shared_libs: [
+    static_libs: [
         "libinput",
-        "libcutils",
-        "libutils",
-        "libbinder",
-        "libui",
+    ],
+    shared_libs: [
         "libbase",
+        "libbinder",
+        "libcutils",
+        "liblog",
+        "libui",
+        "libutils",
     ]
 }