blob: b6d0bcc820a7c1b214f450927997d0c24d512047 [file] [log] [blame]
Benjamin Schwartz75dd21b2019-07-26 09:54:38 -07001//
2// Copyright (C) 2019 The Android Open Source Project
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
Bob Badour5bd32672021-03-11 18:54:31 -080015package {
16 default_applicable_licenses: ["Android-Apache-2.0"],
17}
18
Benjamin Schwartz75dd21b2019-07-26 09:54:38 -070019cc_binary {
20 name: "pwrstats_util",
21 defaults: ["pwrstatsutil_defaults"],
22 srcs: [
23 "main.cpp",
24 "CstateResidencyDataProvider.cpp",
25 ],
26 static_libs: [
Sujee Rajayogam45c6c812020-04-18 11:44:27 -070027 "libpwrstatsutil",
Benjamin Schwartz75dd21b2019-07-26 09:54:38 -070028 ],
29 shared_libs: [
30 "libhidlbase",
31 "android.hardware.power.stats@1.0",
32 ],
33}