aboutsummaryrefslogtreecommitdiffstats
path: root/libsensors/Android.mk
diff options
context:
space:
mode:
authorPaul Kocialkowski <contact@paulk.fr>2013-09-06 09:58:44 -0400
committerAndreas Blaesius <skate4life@gmx.de>2015-08-15 14:20:53 -0700
commitc9541c3d21b7f1ada9c37fb65d9abace51cdcdc5 (patch)
tree4c9a80db17a92282ff88258ec3dfd333cae610a7 /libsensors/Android.mk
parent6a407b3a77615fe3895e165106b7cc5bf1c84a7c (diff)
downloaddevice_samsung_espressowifi-c9541c3d21b7f1ada9c37fb65d9abace51cdcdc5.zip
device_samsung_espressowifi-c9541c3d21b7f1ada9c37fb65d9abace51cdcdc5.tar.gz
device_samsung_espressowifi-c9541c3d21b7f1ada9c37fb65d9abace51cdcdc5.tar.bz2
espresso-common: add opensource sensor hal
Change-Id: I45912eb1b0820d4045704fdfa77769dd26b6b22c
Diffstat (limited to 'libsensors/Android.mk')
-rw-r--r--libsensors/Android.mk85
1 files changed, 85 insertions, 0 deletions
diff --git a/libsensors/Android.mk b/libsensors/Android.mk
new file mode 100644
index 0000000..45edc5f
--- /dev/null
+++ b/libsensors/Android.mk
@@ -0,0 +1,85 @@
+#
+# Copyright (C) 2013 Paul Kocialkowski
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+
+LOCAL_PATH := $(call my-dir)
+PIRANHA_SENSORS_PATH := $(LOCAL_PATH)
+
+include $(CLEAR_VARS)
+
+LOCAL_SRC_FILES := \
+ piranha_sensors.c \
+ input.c \
+ bma250.c \
+ yas530c.c \
+ yas_orientation.c \
+ bh1721.c \
+ gp2a_light.c \
+ gp2a_proximity.c
+
+LOCAL_SHARED_LIBRARIES := libutils libcutils liblog libhardware
+LOCAL_PRELINK_MODULE := false
+
+LOCAL_MODULE := sensors.piranha
+LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/hw
+LOCAL_MODULE_TAGS := optional
+
+ifeq ($(TARGET_DEVICE),p5100)
+ LOCAL_CFLAGS += -DTARGET_DEVICE_P5100
+endif
+ifeq ($(TARGET_DEVICE),p5110)
+ LOCAL_CFLAGS += -DTARGET_DEVICE_P5100
+endif
+ifeq ($(TARGET_DEVICE),p3100)
+ LOCAL_CFLAGS += -DTARGET_DEVICE_P3100
+endif
+ifeq ($(TARGET_DEVICE),p3110)
+ LOCAL_CFLAGS += -DTARGET_DEVICE_P3100
+endif
+
+include $(BUILD_SHARED_LIBRARY)
+
+LOCAL_PATH := $(PIRANHA_SENSORS_PATH)/geomagneticd
+
+include $(CLEAR_VARS)
+
+LOCAL_SRC_FILES := \
+ geomagneticd.c
+
+LOCAL_SHARED_LIBRARIES := libutils libcutils liblog
+LOCAL_PRELINK_MODULE := false
+
+LOCAL_MODULE := geomagneticd
+LOCAL_MODULE_TAGS := optional
+
+include $(BUILD_EXECUTABLE)
+
+LOCAL_PATH := $(PIRANHA_SENSORS_PATH)/orientationd
+
+include $(CLEAR_VARS)
+
+LOCAL_SRC_FILES := \
+ input.c \
+ vector.c \
+ orientationd.c
+
+LOCAL_SHARED_LIBRARIES := libutils libcutils liblog
+LOCAL_PRELINK_MODULE := false
+
+LOCAL_MODULE := orientationd
+LOCAL_MODULE_TAGS := optional
+
+include $(BUILD_EXECUTABLE)