Files
device_motorola_rtwo/sensors/Android.bp
Cosmin Tanislav 19f1c1d6f0 eqs: sensors: Create input event polling one shot sensor
* for double tap to wake in screen off and in aod

Co-authored-by: SGCMarkus <markusornik@gmail.com>
Change-Id: Ie78d7729201836bacd65a57f76e22adb61159192
2022-10-29 19:08:18 +02:00

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,
}