329f3b35ad
Already frozen internally. Freezing now in aosp to enable developement on 202504 interfaces. Merged-In: Ie6d38d27a287e258c30516e0030ad8c931d06432 Test: verify .hash file is the same as internally Test: lunch cf_x86_64_phone-next-userdebug Bug: 328236210 Change-Id: I14e49a7ed7a1069cd1ca9b92ce7664f646b18054
80 lines
2.5 KiB
Text
80 lines
2.5 KiB
Text
/*
|
|
* Copyright (C) 2022 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package {
|
|
// See: http://go/android-license-faq
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
// all of the 'license_kinds' from "hardware_interfaces_license"
|
|
// to get the below license kinds:
|
|
// SPDX-license-identifier-Apache-2.0
|
|
default_applicable_licenses: ["hardware_interfaces_license"],
|
|
}
|
|
|
|
aidl_interface {
|
|
name: "android.hardware.audio.sounddose",
|
|
host_supported: true,
|
|
vendor_available: true,
|
|
stability: "vintf",
|
|
srcs: [
|
|
"android/hardware/audio/sounddose/ISoundDoseFactory.aidl",
|
|
],
|
|
imports: [
|
|
latest_android_hardware_audio_core_sounddose,
|
|
],
|
|
backend: {
|
|
// The C++ backend is disabled transitively due to use by core audio HAL.
|
|
cpp: {
|
|
enabled: false,
|
|
},
|
|
java: {
|
|
sdk_version: "module_current",
|
|
},
|
|
},
|
|
versions_with_info: [
|
|
{
|
|
version: "1",
|
|
imports: ["android.hardware.audio.core.sounddose-V1"],
|
|
},
|
|
{
|
|
version: "2",
|
|
imports: ["android.hardware.audio.core.sounddose-V2"],
|
|
},
|
|
|
|
// IMPORTANT: Update latest_android_hardware_audio_sounddose every time you
|
|
// add the latest frozen version to versions_with_info
|
|
],
|
|
frozen: true,
|
|
}
|
|
|
|
// Note: This should always be one version ahead of the last frozen version
|
|
latest_android_hardware_audio_sounddose = "android.hardware.audio.sounddose-V2"
|
|
|
|
// Modules that depend on android.hardware.audio.sounddose directly can include
|
|
// the following cc_defaults to avoid explicitly managing dependency versions
|
|
// across many scattered files.
|
|
cc_defaults {
|
|
name: "latest_android_hardware_audio_sounddose_ndk_shared",
|
|
shared_libs: [
|
|
latest_android_hardware_audio_sounddose + "-ndk",
|
|
],
|
|
}
|
|
|
|
cc_defaults {
|
|
name: "latest_android_hardware_audio_sounddose_ndk_static",
|
|
static_libs: [
|
|
latest_android_hardware_audio_sounddose + "-ndk",
|
|
],
|
|
}
|