1// Build the benchmarks for audio_utils
2
3cc_benchmark {
4    name: "biquad_filter_benchmark",
5    host_supported: true,
6
7    srcs: ["biquad_filter_benchmark.cpp"],
8    cflags: [
9        "-Werror",
10        "-Wall",
11        "-ffast-math",
12    ],
13    static_libs: [
14        "libaudioutils",
15    ],
16}
17
18cc_benchmark {
19    name: "primitives_benchmark",
20    host_supported: true,
21    target: {
22        darwin: {
23            enabled: false,
24        },
25    },
26
27    srcs: ["primitives_benchmark.cpp"],
28    cflags: [
29        "-Werror",
30        "-Wall",
31    ],
32    static_libs: [
33        "libaudioutils",
34    ],
35}
36
37cc_benchmark {
38    name: "statistics_benchmark",
39    host_supported: false,
40
41    srcs: ["statistics_benchmark.cpp"],
42    cflags: [
43        "-Werror",
44        "-Wall",
45    ],
46    static_libs: [
47        "libaudioutils",
48    ],
49}
50