blob: 6583b68c72b35336efae75f2581f316c74f05040 [file] [log] [blame]
// system/audio.h utilities test
package {
default_team: "trendy_team_android_media_audio_framework",
// http://go/android-license-faq
// A large-scale-change added 'default_applicable_licenses' to import
// the below license kinds from "system_media_license":
// SPDX-license-identifier-Apache-2.0
default_applicable_licenses: ["system_media_license"],
}
cc_test {
name: "audio_aidl_utils_test",
defaults: [
"latest_android_hardware_audio_effect_ndk_static",
"latest_android_media_audio_common_types_ndk_static",
],
shared_libs: [
"libbase",
"liblog",
"libutils",
],
header_libs: ["libmedia_headers"],
srcs: [
"audio_aidl_utils_test.cpp",
],
cflags: [
"-Wall",
"-Werror",
],
test_suites: ["device-tests"],
}
cc_test {
name: "EffectParamWrapper_tests",
shared_libs: [
"libbase",
"liblog",
"libutils",
],
header_libs: ["libmedia_headers"],
srcs: [
"EffectParamWrapper_tests.cpp",
],
cflags: [
"-Wall",
"-Werror",
],
test_suites: ["device-tests"],
}
cc_test {
name: "systemaudio_tests",
shared_libs: [
"libaudiofoundation",
"libbase",
"liblog",
"libmedia_helper",
"libutils",
],
header_libs: ["libmedia_headers"],
srcs: [
"static_checks.cpp",
"static_checks_c.c",
"systemaudio_tests.cpp",
],
cflags: [
"-Wall",
"-Werror",
],
test_suites: ["device-tests"],
}