Dan Willemsen | e90894f | 2016-10-04 00:14:41 -0700 | [diff] [blame^] | 1 | cc_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: [ |
| 25 | "libaudiohal", |
| 26 | "libaudioutils", |
| 27 | "libbinder", |
| 28 | "libcutils", |
| 29 | "libutils", |
| 30 | "liblog", |
| 31 | ], |
| 32 | |
| 33 | cflags: [ |
| 34 | "-Werror", |
| 35 | "-Wall", |
| 36 | ], |
| 37 | } |