blob: d0c83d6002b0c5bde093980e3fbf37c0a813cb2f [file] [log] [blame]
Yifan Hongc34f57f2017-03-10 14:12:00 -08001cc_library_shared {
2 name: "libsensorservicehidl",
3 srcs: [
Yifan Hong95c7a062017-03-28 19:07:17 -07004 "EventQueue.cpp",
Yifan Hongc34f57f2017-03-10 14:12:00 -08005 "DirectReportChannel.cpp",
6 "SensorManager.cpp",
7 "utils.cpp",
8 ],
9 cflags: [
10 "-Wall",
11 "-Werror",
12 ],
13 shared_libs: [
14 "libbase",
15 "libhidlbase",
Yifan Hongc34f57f2017-03-10 14:12:00 -080016 "libutils",
17 "libsensor",
18 "android.frameworks.sensorservice@1.0",
19 "android.hardware.sensors@1.0",
Yifan Hongc34f57f2017-03-10 14:12:00 -080020 ],
Yifan Hong95c7a062017-03-28 19:07:17 -070021 static_libs: [
22 "android.hardware.sensors@1.0-convert",
23 ],
Yifan Hongc34f57f2017-03-10 14:12:00 -080024 export_include_dirs: [
25 "include/"
26 ],
27 local_include_dirs: [
28 "include/sensorservicehidl/"
29 ]
30}