Benjamin Schwartz | 75dd21b | 2019-07-26 09:54:38 -0700 | [diff] [blame] | 1 | // |
| 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 Badour | 5bd3267 | 2021-03-11 18:54:31 -0800 | [diff] [blame] | 15 | package { |
| 16 | default_applicable_licenses: ["Android-Apache-2.0"], |
| 17 | } |
| 18 | |
Benjamin Schwartz | 75dd21b | 2019-07-26 09:54:38 -0700 | [diff] [blame] | 19 | cc_binary { |
| 20 | name: "pwrstats_util", |
| 21 | defaults: ["pwrstatsutil_defaults"], |
| 22 | srcs: [ |
| 23 | "main.cpp", |
| 24 | "CstateResidencyDataProvider.cpp", |
| 25 | ], |
| 26 | static_libs: [ |
Sujee Rajayogam | 45c6c81 | 2020-04-18 11:44:27 -0700 | [diff] [blame] | 27 | "libpwrstatsutil", |
Benjamin Schwartz | 75dd21b | 2019-07-26 09:54:38 -0700 | [diff] [blame] | 28 | ], |
| 29 | shared_libs: [ |
| 30 | "libhidlbase", |
| 31 | "android.hardware.power.stats@1.0", |
| 32 | ], |
| 33 | } |