diff options
| author | sbrissen <sbrissen@hotmail.com> | 2013-11-23 16:07:08 -0500 |
|---|---|---|
| committer | sbrissen <sbrissen@hotmail.com> | 2013-12-10 11:08:52 -0500 |
| commit | e964ffe01969dfc3ae0ee5198a2e225950d80d25 (patch) | |
| tree | 6dc6c162b6936ce2dfabc9a5339b69e876d789e7 /libsensors/Android.mk | |
| parent | 8bfb898e5dd715ca448181cf4787340984a5a620 (diff) | |
| download | device_samsung_t0lte-e964ffe01969dfc3ae0ee5198a2e225950d80d25.tar.gz device_samsung_t0lte-e964ffe01969dfc3ae0ee5198a2e225950d80d25.tar.bz2 device_samsung_t0lte-e964ffe01969dfc3ae0ee5198a2e225950d80d25.zip | |
t0lte: opensource sensors
Change-Id: I5c79b039ce4812ba82f5f257624c7bb9ac455801
Diffstat (limited to 'libsensors/Android.mk')
| -rw-r--r-- | libsensors/Android.mk | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/libsensors/Android.mk b/libsensors/Android.mk new file mode 100644 index 0000000..47a90e5 --- /dev/null +++ b/libsensors/Android.mk @@ -0,0 +1,47 @@ +# Copyright (C) 2008 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) + +ifneq ($(TARGET_SIMULATOR),true) + +# 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 := -DALOG_TAG=\"Sensors\" +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 |
