summaryrefslogtreecommitdiffstats
path: root/modules/input/evdev/Android.mk
diff options
context:
space:
mode:
authorMichael Wright <michaelwr@google.com>2015-02-13 17:31:41 -0800
committerMichael Wright <michaelwr@google.com>2015-02-23 10:45:55 -0800
commit5113aff7e2a8540cc3f6364b8c730f853784e2ff (patch)
tree423bf08dec26c32c09cd1a9af2e41a2a16cb903c /modules/input/evdev/Android.mk
parent5d4ee176fb9b9c48505476a2200e20ecaca90353 (diff)
downloadhardware_libhardware-5113aff7e2a8540cc3f6364b8c730f853784e2ff.zip
hardware_libhardware-5113aff7e2a8540cc3f6364b8c730f853784e2ff.tar.gz
hardware_libhardware-5113aff7e2a8540cc3f6364b8c730f853784e2ff.tar.bz2
Add input HAL header.
Change-Id: Ia959dd1d1adf024459d2423fc9d59a811466e53c
Diffstat (limited to 'modules/input/evdev/Android.mk')
-rw-r--r--modules/input/evdev/Android.mk29
1 files changed, 29 insertions, 0 deletions
diff --git a/modules/input/evdev/Android.mk b/modules/input/evdev/Android.mk
new file mode 100644
index 0000000..ad05af3
--- /dev/null
+++ b/modules/input/evdev/Android.mk
@@ -0,0 +1,29 @@
+# Copyright (C) 2015 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+LOCAL_PATH := $(call my-dir)
+
+include $(CLEAR_VARS)
+
+LOCAL_MODULE := input.evdev.default
+LOCAL_MODULE_RELATIVE_PATH := hw
+
+LOCAL_SRC_FILES := \
+ EvdevModule.cpp
+
+LOCAL_SHARED_LIBRARIES := liblog
+
+LOCAL_MODULE_TAGS := optional
+
+include $(BUILD_SHARED_LIBRARY)