blob: 8848e7911ea8b49160bab05d890330eb2dc0d726 [file] [log] [blame]
// audio preprocessing unit test
package {
// See: http://go/android-license-faq
// A large-scale-change added 'default_applicable_licenses' to import
// all of the 'license_kinds' from "frameworks_av_media_libeffects_preprocessing_license"
// to get the below license kinds:
// SPDX-license-identifier-Apache-2.0
default_applicable_licenses: [
"frameworks_av_media_libeffects_preprocessing_license",
],
}
cc_test {
name: "AudioPreProcessingTest",
vendor: true,
srcs: ["PreProcessingTest.cpp"],
shared_libs: [
"libaudioutils",
"liblog",
"libutils",
],
static_libs: [
"libaudiopreprocessing",
"webrtc_audio_processing",
],
header_libs: [
"libaudioeffects",
"libhardware_headers",
],
gtest: false,
}
cc_test {
name: "correlation",
host_supported: true,
srcs: ["correlation.cpp"],
cflags: [
"-Wall",
"-Werror",
"-Wextra",
],
gtest: false,
}