blob: 045b0d32c9e0985970496759be17d364212f9d57 [file] [log] [blame]
Saketh Sathuvalli4ece3e02020-07-19 21:19:39 +05301// audio preprocessing unit test
2cc_test {
Saketh Sathuvalli08337032020-09-22 21:13:45 +05303 name: "AudioPreProcessingLegacyTest",
4
5 vendor: true,
6
7 relative_install_path: "soundfx",
8
9 srcs: ["PreProcessingTest.cpp"],
10
11 shared_libs: [
12 "libaudiopreprocessing_legacy",
13 "libaudioutils",
14 "liblog",
15 "libutils",
16 "libwebrtc_audio_preprocessing",
17 ],
18
19 cflags: [
20 "-DWEBRTC_POSIX",
21 "-DWEBRTC_LEGACY",
22 "-fvisibility=default",
23 "-Wall",
24 "-Werror",
25 "-Wextra",
26 ],
27
28 header_libs: [
29 "libaudioeffects",
30 "libhardware_headers",
31 ],
32}
33
34cc_test {
Saketh Sathuvalli4ece3e02020-07-19 21:19:39 +053035 name: "AudioPreProcessingTest",
36
37 vendor: true,
38
39 relative_install_path: "soundfx",
40
41 srcs: ["PreProcessingTest.cpp"],
42
43 shared_libs: [
44 "libaudiopreprocessing",
45 "libaudioutils",
46 "liblog",
47 "libutils",
Saketh Sathuvalli4ece3e02020-07-19 21:19:39 +053048 ],
Saketh Sathuvalli4ece3e02020-07-19 21:19:39 +053049 header_libs: [
50 "libaudioeffects",
51 "libhardware_headers",
52 ],
53}