f84d640186
android.hardware.audio.core will need to use FMQ,
which does not support the C++ backend in the AIDL version.
Migrate VTS tests from the C++ backend to the NDK backend.
Bug: 205884982
Test: atest VtsHalAudioCoreTargetTest
Merged-In: Ia5d29126afdb4bb97dd063a032b96ab83b9ce36e
Change-Id: Ia5d29126afdb4bb97dd063a032b96ab83b9ce36e
(cherry picked from commit 8fcc442416
)
32 lines
881 B
Text
32 lines
881 B
Text
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"],
|
|
}
|
|
|
|
cc_test {
|
|
name: "VtsHalAudioCoreTargetTest",
|
|
defaults: [
|
|
"VtsHalTargetTestDefaults",
|
|
"use_libaidlvintf_gtest_helper_static",
|
|
],
|
|
srcs: [
|
|
"ModuleConfig.cpp",
|
|
"VtsHalAudioCoreTargetTest.cpp",
|
|
],
|
|
shared_libs: [
|
|
"libbinder_ndk",
|
|
],
|
|
static_libs: [
|
|
"android.hardware.audio.common-V1-ndk",
|
|
"android.hardware.audio.core-V1-ndk",
|
|
"android.media.audio.common.types-V1-ndk",
|
|
],
|
|
test_suites: [
|
|
"general-tests",
|
|
"vts",
|
|
],
|
|
}
|