blob: 4309bf5db0c3a1bcb86c180b05ee75551420ff7c [file] [log] [blame]
Andy Hungb776e372023-05-24 11:53:47 -07001package {
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 "frameworks_base_license"
5 // to get the below license kinds:
6 // SPDX-license-identifier-Apache-2.0
7 default_applicable_licenses: ["frameworks_av_services_audioflinger_license"],
8}
9
10cc_library {
11 name: "libaudioflinger_utils",
12
13 defaults: [
14 "audioflinger_flags_defaults",
15 ],
16
17 srcs: [
18 "AudioWatchdog.cpp",
19 "BufLog.cpp",
20 "NBAIO_Tee.cpp",
21 "TypedLogger.cpp",
22 ],
23
24 shared_libs: [
25 "libaudioutils",
26 "libbase",
27 "liblog",
28 "libnbaio",
29 "libnblog",
30 "libutils",
31 ],
32
33 static_libs: [
34 "libsndfile",
35 ],
36
37 include_dirs: [
38 "frameworks/av/services/audioflinger", // for configuration
39 ],
40}