Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9d3b1a42 authored by Jeff Brown's avatar Jeff Brown
Browse files

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
parent 8f5e3d13
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -194,6 +194,7 @@ LOCAL_SHARED_LIBRARIES := \
	libnetutils \
	libui \
	libgui \
	libinput \
	libcamera_client \
	libskia \
	libsqlite \
+1 −1
Original line number Diff line number Diff line
@@ -25,7 +25,7 @@
#include <android_runtime/android_util_AssetManager.h>
#include <android_runtime/android_view_Surface.h>
#include <android_runtime/AndroidRuntime.h>
#include <androidfw/InputTransport.h>
#include <input/InputTransport.h>

#include <gui/Surface.h>

+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@
#include <android_runtime/AndroidRuntime.h>
#include <binder/Parcel.h>
#include <utils/Log.h>
#include <androidfw/InputTransport.h>
#include <input/InputTransport.h>
#include "android_view_InputChannel.h"
#include "android_os_Parcel.h"
#include "android_util_Binder.h"
+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@

#include "jni.h"

#include <androidfw/InputTransport.h>
#include <input/InputTransport.h>

namespace android {

+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@
 * limitations under the License.
 */

#include <androidfw/Input.h>
#include <input/Input.h>

#include <android_runtime/AndroidRuntime.h>
#include <nativehelper/jni.h>
Loading