blob: 8848e7911ea8b49160bab05d890330eb2dc0d726 [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,
Saketh Sathuvalli4ece3e02020-07-19 21:19:39 +053016 srcs: ["PreProcessingTest.cpp"],
Saketh Sathuvalli4ece3e02020-07-19 21:19:39 +053017 shared_libs: [
Saketh Sathuvalli4ece3e02020-07-19 21:19:39 +053018 "libaudioutils",
19 "liblog",
20 "libutils",
Saketh Sathuvalli4ece3e02020-07-19 21:19:39 +053021 ],
Andy Hung70bb12e2021-03-02 09:17:01 -080022 static_libs: [
23 "libaudiopreprocessing",
24 "webrtc_audio_processing",
25 ],
Saketh Sathuvalli4ece3e02020-07-19 21:19:39 +053026 header_libs: [
27 "libaudioeffects",
28 "libhardware_headers",
29 ],
Julien Desprez732654d2021-02-09 14:28:04 -080030 gtest: false,
Saketh Sathuvalli4ece3e02020-07-19 21:19:39 +053031}
Rivukanta Bhattacharya46ab24a2021-01-25 20:33:35 +053032
33cc_test {
34 name: "correlation",
35 host_supported: true,
36 srcs: ["correlation.cpp"],
37 cflags: [
38 "-Wall",
39 "-Werror",
40 "-Wextra",
41 ],
Julien Desprez732654d2021-02-09 14:28:04 -080042 gtest: false,
Rivukanta Bhattacharya46ab24a2021-01-25 20:33:35 +053043}