You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
1.5 KiB
78 lines
1.5 KiB
cc_binary {
|
|
name: "android.hardware.thermal-service.samsung",
|
|
srcs: [
|
|
"service.cpp",
|
|
"Thermal.cpp",
|
|
"thermal-helper.cpp",
|
|
"utils/thermal_throttling.cpp",
|
|
"utils/thermal_info.cpp",
|
|
"utils/thermal_files.cpp",
|
|
"utils/power_files.cpp",
|
|
"utils/powerhal_helper.cpp",
|
|
"utils/thermal_stats_helper.cpp",
|
|
"utils/thermal_watcher.cpp",
|
|
],
|
|
vendor: true,
|
|
relative_install_path: "hw",
|
|
vintf_fragments: [
|
|
"android.hardware.thermal-service.samsung.xml"
|
|
],
|
|
init_rc: [
|
|
"android.hardware.thermal-service.samsung.rc",
|
|
],
|
|
shared_libs: [
|
|
"libbase",
|
|
"libcutils",
|
|
"libjsoncpp",
|
|
"libutils",
|
|
"libnl",
|
|
"libbinder_ndk",
|
|
"android.frameworks.stats-V1-ndk",
|
|
"android.hardware.power-V1-ndk",
|
|
"android.hardware.thermal-V1-ndk",
|
|
"pixel-power-ext-V1-ndk",
|
|
"pixelatoms-cpp",
|
|
],
|
|
static_libs: [
|
|
"libpixelstats",
|
|
],
|
|
export_shared_lib_headers: [
|
|
"android.frameworks.stats-V1-ndk",
|
|
"pixelatoms-cpp",
|
|
],
|
|
cflags: [
|
|
"-Wall",
|
|
"-Werror",
|
|
"-Wextra",
|
|
"-Wunused",
|
|
],
|
|
tidy: true,
|
|
tidy_checks: [
|
|
"android-*",
|
|
"cert-*",
|
|
"clang-analyzer-security*",
|
|
],
|
|
tidy_checks_as_errors: [
|
|
"android-*",
|
|
"clang-analyzer-security*",
|
|
"cert-*",
|
|
],
|
|
}
|
|
|
|
sh_binary {
|
|
name: "thermal_logd.samsung",
|
|
src: "init.thermal.logging.sh",
|
|
vendor: true,
|
|
init_rc: [
|
|
"samsung-thermal-logd.rc",
|
|
],
|
|
}
|
|
|
|
sh_binary {
|
|
name: "thermal_symlinks.samsung",
|
|
src: "init.thermal.symlinks.sh",
|
|
vendor: true,
|
|
init_rc: [
|
|
"samsung-thermal-symlinks.rc",
|
|
],
|
|
}
|
|
|