1package { 2 // See: http://go/android-license-faq 3 // A large-scale-change added 'default_applicable_licenses' to import 4 // all of the 'license_kinds' from "device_amlogic_yukawa_license" 5 // to get the below license kinds: 6 // SPDX-license-identifier-Apache-2.0 7 // SPDX-license-identifier-GPL-2.0 8 default_applicable_licenses: ["device_amlogic_yukawa_license"], 9} 10 11cc_binary { 12 name: "android.hardware.health@2.0-service.yukawa", 13 init_rc: ["android.hardware.health@2.0-service.yukawa.rc"], 14 proprietary: true, 15 relative_install_path: "hw", 16 srcs: [ 17 "HealthService.cpp", 18 ], 19 cflags: [ 20 "-Wall", 21 "-Werror", 22 ], 23 static_libs: [ 24 "android.hardware.health@2.0-impl", 25 "android.hardware.health@1.0-convert", 26 "libhealthservice", 27 "libbatterymonitor", 28 "libhealthstoragedefault", 29 ], 30 shared_libs: [ 31 "libbase", 32 "libcutils", 33 "libhidlbase", 34 "libutils", 35 "android.hardware.health@2.0", 36 ], 37 header_libs: ["libhealthd_headers"], 38} 39