summaryrefslogtreecommitdiffstats
path: root/libsensors/Android.mk
diff options
context:
space:
mode:
authorWolfgang Wiedmeyer <wolfgit@wiedmeyer.de>2016-12-13 02:31:32 +0100
committerWolfgang Wiedmeyer <wolfgit@wiedmeyer.de>2016-12-13 02:31:32 +0100
commite7e8f7d29063df2017d419a898fe877b56b14653 (patch)
treeb450d69a7775c0b898e15956fac7069975513aab /libsensors/Android.mk
parent80d404b929c222f3fdc7ecad7694753c8c27a537 (diff)
parent25eedce86d2723b23b6fc21dece20540f7ec68c0 (diff)
downloaddevice_samsung_i9300-replicant-6.0-alpha-0006.zip
device_samsung_i9300-replicant-6.0-alpha-0006.tar.gz
device_samsung_i9300-replicant-6.0-alpha-0006.tar.bz2
Merge branch 'cm-13.0' of https://github.com/CyanogenMod/android_device_samsung_i9300 into replicant-6.0replicant-6.0-alpha-0006
Diffstat (limited to 'libsensors/Android.mk')
-rw-r--r--libsensors/Android.mk69
1 files changed, 34 insertions, 35 deletions
diff --git a/libsensors/Android.mk b/libsensors/Android.mk
index 8d15195..636ad9d 100644
--- a/libsensors/Android.mk
+++ b/libsensors/Android.mk
@@ -1,48 +1,47 @@
-# Copyright (C) 2013 Paul Kocialkowski <contact@paulk.fr>
+# Copyright (C) 2008 The Android Open Source Project
#
-# 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.
+# 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
#
-# 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.
+# http://www.apache.org/licenses/LICENSE-2.0
#
-# You should have received a copy of the GNU General Public License
-# along with this program. If not, see <http://www.gnu.org/licenses/>.
+# 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)
+ifneq ($(TARGET_SIMULATOR),true)
-LOCAL_SRC_FILES := \
- smdk4x12_sensors.c \
- input.c \
- akm8975.c \
- akmdfs/AKFS_APIs_8975/AKFS_AK8975.c \
- akmdfs/AKFS_APIs_8975/AKFS_AOC.c \
- akmdfs/AKFS_APIs_8975/AKFS_Device.c \
- akmdfs/AKFS_APIs_8975/AKFS_Direction.c \
- akmdfs/AKFS_APIs_8975/AKFS_VNorm.c \
- akmdfs/AKFS_FileIO.c \
- cm36651_proximity.c \
- cm36651_light.c \
- lsm330dlc_acceleration.c \
- lsm330dlc_gyroscope.c \
- lps331ap.c
-
-LOCAL_C_INCLUDES := \
- $(LOCAL_PATH)/akmdfs \
- $(LOCAL_PATH)/akmdfs/AKFS_APIs_8975 \
- $(LOCAL_PATH)
-
-LOCAL_SHARED_LIBRARIES := libutils libcutils liblog libhardware
-LOCAL_PRELINK_MODULE := false
+# HAL module implemenation, not prelinked, and stored in
+# hw/<SENSORS_HARDWARE_MODULE_ID>.<ro.product.board>.so
+include $(CLEAR_VARS)
LOCAL_MODULE := sensors.$(TARGET_BOOTLOADER_BOARD_NAME)
+
LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/hw
+
LOCAL_MODULE_TAGS := optional
+LOCAL_CFLAGS := -DLOG_TAG=\"sensorscpp\"
+LOCAL_SRC_FILES := \
+ sensors.cpp \
+ SensorBase.cpp \
+ LightSensor.cpp \
+ ProximitySensor.cpp \
+ AkmSensor.cpp \
+ GyroSensor.cpp \
+ InputEventReader.cpp \
+ AccelSensor.cpp \
+ PressureSensor.cpp
+
+LOCAL_SHARED_LIBRARIES := liblog libcutils libdl
+LOCAL_PRELINK_MODULE := false
+
include $(BUILD_SHARED_LIBRARY)
+
+endif # !TARGET_SIMULATOR