blob: 615b54122551b8cefc6c1760d26c2be4a881cbb1 [file] [log] [blame]
Dan Willemsene90894f2016-10-04 00:14:41 -07001cc_library_shared {
2 name: "libnbaio",
3 srcs: [
4 "AudioBufferProviderSource.cpp",
5 "AudioStreamOutSink.cpp",
6 "AudioStreamInSource.cpp",
7 "NBAIO.cpp",
8 "MonoPipe.cpp",
9 "MonoPipeReader.cpp",
10 "Pipe.cpp",
11 "PipeReader.cpp",
12 "SourceAudioBufferProvider.cpp",
13
14 "NBLog.cpp",
15 ],
16
17 // libsndfile license is incompatible; uncomment to use for local debug only
18 // srcs: [
19 // "LibsndfileSink.cpp",
20 // "LibsndfileSource.cpp",
21 // ],
22 // static_libs: ["libsndfile"],
23
24 shared_libs: [
Dan Willemsene90894f2016-10-04 00:14:41 -070025 "libaudioutils",
26 "libbinder",
27 "libcutils",
28 "libutils",
29 "liblog",
30 ],
31
32 cflags: [
33 "-Werror",
34 "-Wall",
35 ],
36}