X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=Android.mk;h=f512dd39c404ed09674685d6e1634a56cc832ff0;hb=7a62a908ced944b3fcaa8fa407bdd632d153527e;hp=c45af742c873acdcf690fdd37ab0d79f9d295537;hpb=bbe3210c7b6ec5239d6377edd9f0a7decc1e272d;p=android-x86%2Fhardware-intel-libsensors.git diff --git a/Android.mk b/Android.mk index c45af74..f512dd3 100644 --- a/Android.mk +++ b/Android.mk @@ -1,9 +1,21 @@ +# Copyright (c) 2015 Intel Corporation # -# Copyright (C) 2014 Intel Corporation. +# 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. # IIO sensors HAL module implementation, compiled as hw/iio-sensors-hal.so +ifeq ($(USE_IIO_SENSOR_HAL),true) + LOCAL_PATH := $(call my-dir) include $(CLEAR_VARS) @@ -15,17 +27,75 @@ src_files := $(src_path)/entry.c \ $(src_path)/description.c \ $(src_path)/utils.c \ $(src_path)/transform.c \ + $(src_path)/compass-calibration.c \ + $(src_path)/matrix-ops.c \ + $(src_path)/gyro-calibration.c \ + $(src_path)/filtering.c \ + $(src_path)/discovery.c \ + $(src_path)/accel-calibration.c \ LOCAL_C_INCLUDES += $(LOCAL_PATH) vendor/intel/hardware/iio-sensors -LOCAL_MODULE := sensors.gmin +ifeq ($(HAL_AUTODETECT),true) +LOCAL_MODULE := iio-sensors-hal +else +LOCAL_MODULE := sensors.$(TARGET_BOARD_PLATFORM) +endif LOCAL_MODULE_OWNER := intel -LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/hw +LOCAL_MODULE_RELATIVE_PATH := hw LOCAL_MODULE_TAGS := optional LOCAL_CFLAGS := -DLOG_TAG=\"Sensors\" -fvisibility=hidden LOCAL_LDFLAGS := -Wl,--gc-sections LOCAL_SHARED_LIBRARIES := liblog libcutils libdl LOCAL_PRELINK_MODULE := false LOCAL_SRC_FILES := $(src_files) +LOCAL_PROPRIETARY_MODULE := true +include $(BUILD_SHARED_LIBRARY) +include $(CLEAR_VARS) +LOCAL_C_INCLUDES += $(LOCAL_PATH) vendor/intel/hardware/iio-sensors +LOCAL_MODULE := sens +LOCAL_CFLAGS := -DLOG_TAG=\"Sensors\" -fvisibility=hidden +LOCAL_SHARED_LIBRARIES := liblog libcutils libdl +LOCAL_SRC_FILES := sens.c +LOCAL_MODULE_TAGS := eng +LOCAL_MODULE_PATH := $(TARGET_OUT_VENDOR_EXECUTABLES) +include $(BUILD_EXECUTABLE) + +endif + + +# Activity HAL module implementation + +ifeq ($(USE_IIO_ACTIVITY_RECOGNITION_HAL),true) + +include $(CLEAR_VARS) + +src_path := . +activity_src_files := $(src_path)/activity_event_entry.c \ + $(src_path)/discovery.c \ + $(src_path)/utils.c \ + +LOCAL_C_INCLUDES += $(LOCAL_PATH) vendor/intel/hardware/iio-sensors +LOCAL_MODULE := activity_recognition.$(TARGET_BOARD_PLATFORM) +LOCAL_MODULE_OWNER := intel +LOCAL_MODULE_RELATIVE_PATH := hw +LOCAL_MODULE_TAGS := optional +LOCAL_CFLAGS := -DLOG_TAG=\"Activity\" -fvisibility=hidden +LOCAL_LDFLAGS := -Wl,--gc-sections +LOCAL_SHARED_LIBRARIES := liblog libcutils +LOCAL_PRELINK_MODULE := false +LOCAL_SRC_FILES := $(activity_src_files) +LOCAL_PROPRIETARY_MODULE := true include $(BUILD_SHARED_LIBRARY) +include $(CLEAR_VARS) +LOCAL_C_INCLUDES += $(LOCAL_PATH) vendor/intel/hardware/iio-sensors +LOCAL_MODULE := activity +LOCAL_CFLAGS := -DLOG_TAG=\"Activity\" -fvisibility=hidden +LOCAL_SHARED_LIBRARIES := liblog libcutils libdl +LOCAL_SRC_FILES := activity.c +LOCAL_MODULE_TAGS := eng +LOCAL_MODULE_PATH := $(TARGET_OUT_VENDOR_EXECUTABLES) +include $(BUILD_EXECUTABLE) + +endif