blob: 748dafcf62c7e1920ebf1804062b74256d60eb9c [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",
16 "libhidltransport",
17 "libutils",
18 "libsensor",
19 "android.frameworks.sensorservice@1.0",
20 "android.hardware.sensors@1.0",
21 "android.hidl.base@1.0",
22 ],
Yifan Hong95c7a062017-03-28 19:07:17 -070023 static_libs: [
24 "android.hardware.sensors@1.0-convert",
25 ],
Yifan Hongc34f57f2017-03-10 14:12:00 -080026 export_include_dirs: [
27 "include/"
28 ],
29 local_include_dirs: [
30 "include/sensorservicehidl/"
31 ]
32}