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// 16filegroup { 17 name: "framework-statsd-aidl-sources", 18 srcs: ["**/*.aidl"], 19} 20 21aidl_interface { 22 name: "statsd-aidl", 23 unstable: true, 24 srcs: [ 25 "android/os/IPendingIntentRef.aidl", 26 "android/os/IPullAtomCallback.aidl", 27 "android/os/IPullAtomResultReceiver.aidl", 28 "android/os/IStatsCompanionService.aidl", 29 "android/os/IStatsd.aidl", 30 "android/os/StatsDimensionsValueParcel.aidl", 31 "android/util/StatsEventParcel.aidl", 32 ], 33 backend: { 34 java: { 35 enabled: false, // framework-statsd and service-statsd use framework-statsd-aidl-sources 36 }, 37 cpp: { 38 enabled: false, 39 }, 40 ndk: { 41 enabled: true, 42 apex_available: [ 43 // TODO(b/145923087): Remove this once statsd binary is in apex 44 "//apex_available:platform", 45 46 "com.android.os.statsd", 47 "test_com.android.os.statsd", 48 ], 49 }, 50 } 51} 52