* Drop light hal and recovery scripts. * All configs updated from fogos U1UG34M.23-82-2 build. Change-Id: Ia889f2af05ec08937a3d64954c40e7e24d9a6025
35 lines
795 B
Text
35 lines
795 B
Text
//
|
|
// Copyright (C) 2022-2023 The LineageOS Project
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
cc_library_shared {
|
|
name: "sensors.fogos",
|
|
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",
|
|
"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.fogos\"",
|
|
],
|
|
vendor: true,
|
|
}
|