blob: 6413945542c55110220febbe6683ae28d67676b0 [file] [log] [blame]
Saketh Sathuvalli4ece3e02020-07-19 21:19:39 +05301// audio preprocessing unit test
Bob Badour948e6aa2021-02-12 21:02:31 -08002package {
3 // See: http://go/android-license-faq
4 // A large-scale-change added 'default_applicable_licenses' to import
5 // all of the 'license_kinds' from "frameworks_av_media_libeffects_preprocessing_license"
6 // to get the below license kinds:
7 // SPDX-license-identifier-Apache-2.0
8 default_applicable_licenses: [
9 "frameworks_av_media_libeffects_preprocessing_license",
10 ],
11}
12
Saketh Sathuvalli4ece3e02020-07-19 21:19:39 +053013cc_test {
14 name: "AudioPreProcessingTest",
Saketh Sathuvalli4ece3e02020-07-19 21:19:39 +053015 vendor: true,
Rivukanta Bhattacharya013e02e2021-03-12 05:50:55 +053016 host_supported: true,
17 gtest: false,
Saketh Sathuvalli4ece3e02020-07-19 21:19:39 +053018 srcs: ["PreProcessingTest.cpp"],
Saketh Sathuvalli4ece3e02020-07-19 21:19:39 +053019 shared_libs: [
Saketh Sathuvalli4ece3e02020-07-19 21:19:39 +053020 "libaudioutils",
21 "liblog",
22 "libutils",
Saketh Sathuvalli4ece3e02020-07-19 21:19:39 +053023 ],
Andy Hung70bb12e2021-03-02 09:17:01 -080024 static_libs: [
25 "libaudiopreprocessing",
26 "webrtc_audio_processing",
27 ],
Saketh Sathuvalli4ece3e02020-07-19 21:19:39 +053028 header_libs: [
29 "libaudioeffects",
30 "libhardware_headers",
31 ],
Harish Mahendrakar217c9682021-03-15 15:12:25 -070032 target: {
33 darwin: {
34 enabled: false,
35 },
36 },
Saketh Sathuvalli4ece3e02020-07-19 21:19:39 +053037}
Rivukanta Bhattacharya46ab24a2021-01-25 20:33:35 +053038
39cc_test {
40 name: "correlation",
41 host_supported: true,
42 srcs: ["correlation.cpp"],
43 cflags: [
44 "-Wall",
45 "-Werror",
46 "-Wextra",
47 ],
Julien Desprez732654d2021-02-09 14:28:04 -080048 gtest: false,
Rivukanta Bhattacharya46ab24a2021-01-25 20:33:35 +053049}