1cc_library_static { 2 name: "libpixelpowerstats", 3 vendor_available: true, 4 export_include_dirs: ["include"], 5 6 srcs: [ 7 "PowerStats.cpp", 8 "PowerStatsUtils.cpp", 9 "GenericStateResidencyDataProvider.cpp", 10 "WlanStateResidencyDataProvider.cpp", 11 "AidlStateResidencyDataProvider.cpp", 12 "DisplayStateResidencyDataProvider.cpp", 13 ], 14 15 cflags: [ 16 "-Wall", 17 "-Werror", 18 ], 19 20 shared_libs: [ 21 "android.hardware.power@1.1", 22 "android.hardware.power.stats@1.0", 23 "pixelpowerstats_provider_aidl_interface-cpp", 24 "liblog", 25 "libbinder", 26 ], 27} 28