mirror of
https://github.com/Evolution-X-Devices/device_motorola_rtwo
synced 2026-01-27 13:35:15 +00:00
* for double tap to wake in screen off and in aod Co-authored-by: SGCMarkus <markusornik@gmail.com> Change-Id: Ie78d7729201836bacd65a57f76e22adb61159192
37 lines
802 B
Plaintext
37 lines
802 B
Plaintext
//
|
|
// Copyright (C) 2022 The LineageOS Project
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
cc_library_shared {
|
|
name: "sensors.eqs",
|
|
defaults: ["hidl_defaults"],
|
|
srcs: [
|
|
"Sensor.cpp",
|
|
"SensorsSubHal.cpp",
|
|
],
|
|
shared_libs: [
|
|
"android.hardware.sensors@1.0",
|
|
"android.hardware.sensors@2.0",
|
|
"android.hardware.sensors@2.0-ScopedWakelock",
|
|
"android.hardware.sensors@2.1",
|
|
"libc",
|
|
"libcutils",
|
|
"libfmq",
|
|
"libhardware",
|
|
"libhidlbase",
|
|
"liblog",
|
|
"libpower",
|
|
"libutils",
|
|
],
|
|
static_libs: [
|
|
"android.hardware.sensors@1.0-convert",
|
|
"android.hardware.sensors@2.X-multihal",
|
|
],
|
|
cflags: [
|
|
"-DLOG_TAG=\"sensors.eqs\"",
|
|
],
|
|
vendor: true,
|
|
}
|