1package {
2    // See: http://go/android-license-faq
3    // A large-scale-change added 'default_applicable_licenses' to import
4    // all of the 'license_kinds' from "device_google_atv_license"
5    // to get the below license kinds:
6    //   SPDX-license-identifier-Apache-2.0
7    default_applicable_licenses: ["device_google_atv_license"],
8}
9
10cc_library {
11  name: "libaudio_proxy.google",
12
13  system_ext_specific: true,
14
15  srcs: [
16    "AudioProxy.cpp",
17    "AudioProxyDevice.cpp",
18    "AudioProxyManager.cpp",
19    "AudioProxyStreamOut.cpp",
20    "OutputStreamImpl.cpp",
21    "StreamProviderImpl.cpp",
22  ],
23
24  shared_libs: [
25    "device.google.atv.audio_proxy-aidl-V3-ndk",
26    "libbase",
27    "libbinder_ndk",
28    "libcutils",
29    "libfmq",
30    "libutils",
31  ],
32
33  cflags: [
34    "-Werror",
35    "-Wthread-safety",
36    "-Wno-unused-parameter",
37  ],
38}
39