1package {
2    default_team: "trendy_team_media_framework_audio",
3    // See: http://go/android-license-faq
4    // A large-scale-change added 'default_applicable_licenses' to import
5    // all of the 'license_kinds' from "frameworks_av_license"
6    // to get the below license kinds:
7    //   SPDX-license-identifier-Apache-2.0
8    default_applicable_licenses: ["frameworks_av_license"],
9}
10
11cc_test {
12    name: "input_monitor",
13    gtest: false,
14    srcs: ["src/input_monitor.cpp"],
15    cflags: [
16        "-Wall",
17        "-Werror",
18    ],
19    shared_libs: ["libaaudio"],
20    header_libs: ["libaaudio_example_utils"],
21}
22
23cc_test {
24    name: "input_monitor_callback",
25    gtest: false,
26    srcs: ["src/input_monitor_callback.cpp"],
27    cflags: [
28        "-Wall",
29        "-Werror",
30    ],
31    shared_libs: ["libaaudio"],
32    header_libs: ["libaaudio_example_utils"],
33}
34