device_google_gs101/powerstats/Android.bp
Benjamin Schwartz 9c9f563bd6 powerstats: Add PixelStateResidencyDataProvider
This data provider will be used to produce state residency data from
other native services that have registered callbacks.

Bug: 179277258
Test: adb shell dumpsys android.hardware.power.stats.IPowerStats/default
Test: killed power.stats and bluetooth services and verified that
providers are re-registered.

Change-Id: Id99e6d2a9300f7c7483e3fb7a6a9604a46fbbc6f
2021-03-08 11:54:56 -08:00

90 lines
2.7 KiB
Text

// Copyright (C) 2020 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package {
// See: http://go/android-license-faq
// A large-scale-change added 'default_applicable_licenses' to import
// all of the 'license_kinds' from "//device/google/gs101:device_google_gs101_license"
// to get the below license kinds:
// SPDX-license-identifier-Apache-2.0
default_applicable_licenses: [
"//device/google/gs101:device_google_gs101_license",
],
}
cc_binary {
// TODO(b/167628903) : remove this
name: "android.hardware.power.stats@1.0-service.gs101",
header_libs: [
"device_kernel_headers",
],
relative_install_path: "hw",
init_rc: ["android.hardware.power.stats@1.0-service.gs101.rc"],
vintf_fragments: ["android.hardware.power.stats@1.0-service.gs101.xml"],
srcs: [
"AocStateResidencyDataProvider.cpp",
"DvfsStateResidencyDataProvider.cpp",
"RailDataProvider.cpp",
"service.cpp",
"UfsStateResidencyDataProvider.cpp",
],
cflags: [
"-Wall",
"-Werror",
],
static_libs: [
"libpixelpowerstats",
],
shared_libs: [
"android.hardware.power.stats@1.0",
"pixelpowerstats_provider_aidl_interface-cpp",
"libbase",
"libbinder",
"libcutils",
"libfmq",
"libhidlbase",
"liblog",
"libutils",
],
vendor: true,
}
cc_binary {
name: "android.hardware.power.stats-service.pixel",
init_rc: ["android.hardware.power.stats-service.pixel.rc"],
vintf_fragments: ["android.hardware.power.stats-service.pixel.xml"],
srcs: [
"AocStateResidencyDataProviderAidl.cpp",
"DvfsStateResidencyDataProviderAidl.cpp",
"serviceaidl.cpp"
],
cflags: [
"-Wall",
"-Werror",
],
static_libs: [
"android.hardware.power.stats-impl.pixel",
],
shared_libs: [
"libbase",
"libcutils",
"liblog",
"libutils",
"libbinder_ndk",
"pixel_stateresidency_provider_aidl_interface-ndk_platform",
"android.hardware.power.stats-V1-ndk_platform",
],
relative_install_path: "hw",
vendor: true,
proprietary: true,
}