device_google_gs101/powerstats/Android.bp
Benjamin Schwartz 05a79631f7 Revert "powerstats: Add PixelStateResidencyDataProvider"
Revert "powerstats: Create vendor state residency provider"

Revert submission 13807923-pixel provider

Reason for revert: caused build breakage

Reverted Changes:
I6b0c1d350:bthal/1.1: Use PixelStateResidencyProvider
Ia028e589b:powerstats: Create vendor state residency provider...
Id99e6d2a9:powerstats: Add PixelStateResidencyDataProvider

Change-Id: Ib1b18b5984af6b665c4ad0c9e9217a314a64e6ed
2021-03-09 00:54:23 +00:00

89 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",
"android.hardware.power.stats-V1-ndk_platform",
],
relative_install_path: "hw",
vendor: true,
proprietary: true,
}