blob: b15e79bc29e2bf7ef219779fa904f7b5dd3ad964 [file] [log] [blame]
Glenn Kasten8589ce72017-09-08 17:03:42 -07001cc_library_shared {
2
3 name: "libnblog",
4
5 srcs: [
6 "NBLog.cpp",
7 "PerformanceAnalysis.cpp",
8 "ReportPerformance.cpp",
9 ],
10
11 shared_libs: [
Kevin Rocard07be14f2018-01-24 06:14:03 +000012 "libaudioutils",
Glenn Kasten8589ce72017-09-08 17:03:42 -070013 "libbinder",
14 "libcutils",
15 "liblog",
16 "libutils",
17 ],
18
Eric Tanfefe3162018-09-07 10:09:11 -070019 static_libs: [
20 "libjsoncpp",
21 ],
22
Glenn Kasten8589ce72017-09-08 17:03:42 -070023 cflags: [
24 "-Werror",
25 "-Wall",
26 ],
27
28 include_dirs: ["system/media/audio_utils/include"],
29
30 export_include_dirs: ["include"],
31
32}