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.
15 */
16
17package {
18    default_applicable_licenses: ["Android-Apache-2.0"],
19}
20
21aidl_interface {
22    name: "pixelpowerstats_provider_aidl_interface",
23    unstable: true,
24    srcs: [
25        "android/vendor/powerstats/IPixelPowerStatsProvider.aidl",
26        "android/vendor/powerstats/IPixelPowerStatsCallback.aidl",
27        "android/vendor/powerstats/StateResidencyData.aidl",
28    ],
29
30    vendor_available: true,
31}
32
33aidl_interface {
34    name: "pixel_stateresidency_provider_aidl_interface",
35    unstable: true,
36    imports: ["android.hardware.power.stats-V1"],
37    srcs: [
38        "android/vendor/powerstats/IPixelStateResidencyProvider.aidl",
39        "android/vendor/powerstats/IPixelStateResidencyCallback.aidl",
40    ],
41    backend: {
42        java: {
43            platform_apis: true,
44        },
45        cpp: {
46            enabled: false,
47        },
48    },
49
50    vendor_available: true,
51    host_supported: true,
52}
53