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//
16package {
17    default_applicable_licenses: ["Android-Apache-2.0"],
18}
19
20filegroup {
21    name: "framework-statsd-aidl-sources",
22    srcs: ["**/*.aidl"],
23}
24
25aidl_interface {
26    name: "statsd-aidl",
27    unstable: true,
28    srcs: [
29        "android/os/StatsSubscriptionCallbackReason.aidl",
30        "android/os/IStatsSubscriptionCallback.aidl",
31        "android/os/IPendingIntentRef.aidl",
32        "android/os/IPullAtomCallback.aidl",
33        "android/os/IPullAtomResultReceiver.aidl",
34        "android/os/IStatsCompanionService.aidl",
35        "android/os/IStatsd.aidl",
36        "android/os/IStatsQueryCallback.aidl",
37        "android/os/StatsDimensionsValueParcel.aidl",
38        "android/util/PropertyParcel.aidl",
39        "android/util/StatsEventParcel.aidl",
40    ],
41    host_supported: true,
42    backend: {
43        java: {
44            enabled: false, // framework-statsd and service-statsd use framework-statsd-aidl-sources
45        },
46        cpp: {
47            enabled: false,
48        },
49        ndk: {
50            enabled: true,
51            apex_available: [
52                "com.android.os.statsd",
53                "test_com.android.os.statsd",
54            ],
55            min_sdk_version: "30",
56        },
57    }
58}
59