blob: fd7af4fa1719b9ae43bfa7e6be43d85e3af804c7 [file] [log] [blame]
Dan Willemsene90894f2016-10-04 00:14:41 -07001cc_library_shared {
2 name: "libnbaio",
3 srcs: [
4 "AudioBufferProviderSource.cpp",
Dan Willemsene90894f2016-10-04 00:14:41 -07005 "AudioStreamInSource.cpp",
Glenn Kastened99c2b2016-12-12 08:31:24 -08006 "AudioStreamOutSink.cpp",
Dan Willemsene90894f2016-10-04 00:14:41 -07007 "MonoPipe.cpp",
8 "MonoPipeReader.cpp",
Glenn Kastened99c2b2016-12-12 08:31:24 -08009 "NBAIO.cpp",
10 "NBLog.cpp",
Dan Willemsene90894f2016-10-04 00:14:41 -070011 "Pipe.cpp",
12 "PipeReader.cpp",
13 "SourceAudioBufferProvider.cpp",
Dan Willemsene90894f2016-10-04 00:14:41 -070014 ],
15
16 // libsndfile license is incompatible; uncomment to use for local debug only
17 // srcs: [
18 // "LibsndfileSink.cpp",
19 // "LibsndfileSource.cpp",
20 // ],
21 // static_libs: ["libsndfile"],
22
23 shared_libs: [
Dan Willemsene90894f2016-10-04 00:14:41 -070024 "libaudioutils",
25 "libbinder",
26 "libcutils",
27 "libutils",
28 "liblog",
29 ],
30
31 cflags: [
32 "-Werror",
33 "-Wall",
34 ],
Glenn Kastened99c2b2016-12-12 08:31:24 -080035
36 include_dirs: ["system/media/audio_utils/include"],
Dan Willemsene90894f2016-10-04 00:14:41 -070037}