blob: d026ab634dcb2099c94d84bd670439a112271899 [file] [log] [blame]
Saketh Sathuvallib99e1bc2018-02-21 17:10:34 +05301// Build the unit tests for effects
2
3cc_test {
4 name: "lvmtest",
5 host_supported: false,
6 proprietary: true,
7
8 include_dirs: [
9 "frameworks/av/media/libeffects/lvm/lib/Bass/lib",
10 "frameworks/av/media/libeffects/lvm/lib/Bass/src",
11 "frameworks/av/media/libeffects/lvm/lib/Bundle/src",
12 "frameworks/av/media/libeffects/lvm/lib/Common/src",
13 "frameworks/av/media/libeffects/lvm/lib/Eq/lib",
14 "frameworks/av/media/libeffects/lvm/lib/Eq/src",
15 "frameworks/av/media/libeffects/lvm/lib/SpectrumAnalyzer/lib",
16 "frameworks/av/media/libeffects/lvm/lib/SpectrumAnalyzer/src",
17 "frameworks/av/media/libeffects/lvm/lib/StereoWidening/lib",
18 "frameworks/av/media/libeffects/lvm/lib/StereoWidening/src",
19 "frameworks/av/media/libeffects/lvm/wrapper/Bundle",
20 ],
21
22 header_libs: [
23 "libaudioeffects",
24 ],
25
26 shared_libs: [
27 "libaudioutils",
28 "liblog",
29 ],
30
31 static_libs: [
32 "libmusicbundle",
33 ],
34
35 srcs: ["lvmtest.cpp"],
36
37 cflags: [
Saketh Sathuvallib99e1bc2018-02-21 17:10:34 +053038 "-DSUPPORT_MC",
39
40 "-Wall",
41 "-Werror",
42 "-Wextra",
43 ],
44}
Saketh Sathuvallib89991f2019-01-10 19:26:43 +053045
46cc_test {
Saketh Sathuvalli927bea32020-08-16 19:18:28 +053047 name: "reverb_test",
48 host_supported: false,
49 proprietary: true,
50
51 include_dirs: [
Harish Mahendrakar0bbbe072020-10-01 23:28:48 +053052 "frameworks/av/media/libeffects/lvm/wrapper/Reverb",
Saketh Sathuvalli927bea32020-08-16 19:18:28 +053053 ],
54
55 header_libs: [
56 "libaudioeffects",
57 ],
58
59 shared_libs: [
60 "libaudioutils",
61 "liblog",
62 "libreverbwrapper",
63 ],
64
65 srcs: [
66 "reverb_test.cpp",
67 ],
68
69 cflags: [
70 "-Wall",
71 "-Werror",
72 "-Wextra",
73 ],
74}
75
76cc_test {
Saketh Sathuvallib89991f2019-01-10 19:26:43 +053077 name: "snr",
78 host_supported: false,
79
80 srcs: ["snr.cpp"],
81
82 cflags: [
83 "-Wall",
84 "-Werror",
85 "-Wextra",
86 ],
87}