sanders: build a 32b version of android.hardware.sensors service

* Also add input group access and add service to manifest
This commit is contained in:
therootlord
2018-06-14 22:30:32 -03:00
committed by Keertesh19
parent 17530f7111
commit 8d7fe952a9
5 changed files with 63 additions and 3 deletions

View File

@@ -0,0 +1,24 @@
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE_RELATIVE_PATH := hw
LOCAL_PROPRIETARY_MODULE := true
LOCAL_MODULE := android.hardware.sensors@1.0-service_32
LOCAL_32_BIT_ONLY := true
LOCAL_INIT_RC := android.hardware.sensors@1.0-service_32.rc
LOCAL_SRC_FILES := \
service.cpp \
LOCAL_SHARED_LIBRARIES := \
liblog \
libcutils \
libdl \
libbase \
libutils \
LOCAL_SHARED_LIBRARIES += \
libhidlbase \
libhidltransport \
android.hardware.sensors@1.0 \
include $(BUILD_EXECUTABLE)