1cc_library { 2 name: "libpixelhealth", 3 vendor: true, 4 export_include_dirs: ["include"], 5 6 srcs: [ 7 "BatteryMetricsLogger.cpp", 8 "BatteryThermalControl.cpp", 9 "CycleCountBackupRestore.cpp", 10 "DeviceHealth.cpp", 11 "LowBatteryShutdownMetrics.cpp", 12 ], 13 14 cflags: [ 15 "-Wall", 16 "-Werror", 17 ], 18 19 static_libs: [ 20 "libbatterymonitor", 21 ], 22 23 export_shared_lib_headers: [ 24 "android.frameworks.stats@1.0", 25 ], 26 27 shared_libs: [ 28 "android.frameworks.stats@1.0", 29 "libbase", 30 "libcutils", 31 "libhidlbase", 32 "libhidltransport", 33 "libhwbinder", 34 "libutils", 35 ], 36} 37