blob: 2808293f2d55de5d5915118074c874351fad5d40 [file] [log] [blame]
Rivukanta Bhattacharyafd605792020-11-13 20:39:52 +05301cc_benchmark {
2 name: "preprocessing_legacy_benchmark",
3 vendor: true,
4 relative_install_path: "soundfx",
5 srcs: ["preprocessing_benchmark.cpp"],
6 shared_libs: [
7 "libaudiopreprocessing_legacy",
8 "libaudioutils",
9 "liblog",
10 "libutils",
11 "libwebrtc_audio_preprocessing",
12 ],
13 cflags: [
14 "-DWEBRTC_POSIX",
15 "-DWEBRTC_LEGACY",
16 "-fvisibility=default",
17 "-Wall",
18 "-Werror",
19 "-Wextra",
20 ],
21 header_libs: [
22 "libaudioeffects",
23 "libhardware_headers",
24 "libwebrtc_absl_headers",
25 ],
26}
27
28cc_benchmark {
29 name: "preprocessing_benchmark",
30 vendor: true,
31 relative_install_path: "soundfx",
32 srcs: ["preprocessing_benchmark.cpp"],
33 shared_libs: [
34 "libaudiopreprocessing",
35 "libaudioutils",
36 "liblog",
37 "libutils",
38 ],
39 cflags: [
40 "-DWEBRTC_POSIX",
41 "-fvisibility=default",
42 "-Wall",
43 "-Werror",
44 "-Wextra",
45 ],
46 header_libs: [
47 "libaudioeffects",
48 "libhardware_headers",
49 "libwebrtc_absl_headers",
50 ],
51}