1// Reasonable defaults for [email protected].<device>. 2// Vendor service can customize by implementing functions defined in 3// libhealthd and libhealthstoragedefault. 4 5 6cc_library_static { 7 name: "libhealthservice", 8 vendor_available: true, 9 srcs: ["HealthServiceCommon.cpp"], 10 11 export_include_dirs: ["include"], 12 13 cflags: [ 14 "-Wall", 15 "-Werror", 16 ], 17 shared_libs: [ 18 "[email protected]", 19 ], 20 static_libs: [ 21 "[email protected]", 22 "[email protected]", 23 ], 24 export_static_lib_headers: [ 25 "[email protected]", 26 ], 27 header_libs: ["libhealthd_headers"], 28 export_header_lib_headers: ["libhealthd_headers"], 29} 30