blob: 6d2aae45bea7e73d77d328443073886c36276580 [file] [log] [blame]
Cosmin Tanislav75fd6352022-02-16 22:14:58 +02001//
2// Copyright (C) 2022 The LineageOS Project
3//
4// SPDX-License-Identifier: Apache-2.0
5//
6
7cc_library_shared {
8 name: "sensors.sake",
9 defaults: ["hidl_defaults"],
10 srcs: [
11 "Sensor.cpp",
12 "SensorsSubHal.cpp",
13 ],
14 shared_libs: [
15 "android.hardware.sensors@1.0",
16 "android.hardware.sensors@2.0",
17 "android.hardware.sensors@2.0-ScopedWakelock",
18 "android.hardware.sensors@2.1",
19 "libcutils",
20 "libfmq",
21 "libhardware",
22 "libhidlbase",
23 "liblog",
24 "libpower",
25 "libutils",
26 ],
27 static_libs: [
28 "android.hardware.sensors@1.0-convert",
29 "android.hardware.sensors@2.X-multihal",
30 ],
31 cflags: [
32 "-DLOG_TAG=\"sensors.sake\"",
33 ],
34 vendor: true,
35}