Move slider into gs101 and <device>
from: 026342771c6642980cb4653b1ec4d857a5d8be54
Bug: 167996145
Change-Id: I2ebf7f019afed1cbe9b60dcd82581bd3a52fe109
diff --git a/powerstats/Android.bp b/powerstats/Android.bp
new file mode 100644
index 0000000..07e16f1
--- /dev/null
+++ b/powerstats/Android.bp
@@ -0,0 +1,89 @@
+// 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,
+}