1cc_library_shared { 2 name: "libsensorservicehidl", 3 srcs: [ 4 "EventQueue.cpp", 5 "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 "libhwbinder", 18 "libutils", 19 "libsensor", 20 "android.frameworks.sensorservice@1.0", 21 "android.hardware.sensors@1.0", 22 ], 23 static_libs: [ 24 "android.hardware.sensors@1.0-convert", 25 ], 26 export_include_dirs: [ 27 "include/" 28 ], 29 local_include_dirs: [ 30 "include/sensorservicehidl/" 31 ] 32} 33