xref: /aosp_15_r20/frameworks/av/media/libeffects/downmix/benchmark/Android.bp (revision ec779b8e0859a360c3d303172224686826e6e0e1)
1// Build testbench for downmix module.
2package {
3    default_team: "trendy_team_media_framework_audio",
4    // See: http://go/android-license-faq
5    // A large-scale-change added 'default_applicable_licenses' to import
6    // all of the 'license_kinds' from "frameworks_av_media_libeffects_downmix_license"
7    // to get the below license kinds:
8    //   SPDX-license-identifier-Apache-2.0
9    default_applicable_licenses: [
10        "frameworks_av_media_libeffects_downmix_license",
11    ],
12}
13
14cc_benchmark {
15    name: "downmix_benchmark",
16    host_supported: false,
17    vendor: true,
18    include_dirs: [
19        "frameworks/av/media/libeffects/downmix",
20    ],
21    header_libs: [
22        "libaudioeffects",
23    ],
24    shared_libs: [
25        "liblog",
26    ],
27    static_libs: [
28        "libaudioutils",
29        "libdownmix",
30    ],
31    srcs: [
32        "downmix_benchmark.cpp",
33    ],
34    cflags: [
35        "-Wall",
36        "-Werror",
37        "-Wextra",
38    ],
39}
40