blob: 118832040feb97bd9603375e4c056425282f206e [file] [log] [blame]
Glenn Kasten8589ce72017-09-08 17:03:42 -07001cc_library_shared {
2
3 name: "libnblog",
4
5 srcs: [
Eric Tanace588c2018-09-12 11:44:43 -07006 "Entry.cpp",
7 "Merger.cpp",
Glenn Kasten8589ce72017-09-08 17:03:42 -07008 "PerformanceAnalysis.cpp",
Eric Tanace588c2018-09-12 11:44:43 -07009 "Reader.cpp",
Glenn Kasten8589ce72017-09-08 17:03:42 -070010 "ReportPerformance.cpp",
Eric Tanace588c2018-09-12 11:44:43 -070011 "Timeline.cpp",
12 "Writer.cpp",
Glenn Kasten8589ce72017-09-08 17:03:42 -070013 ],
14
15 shared_libs: [
Kevin Rocard07be14f2018-01-24 06:14:03 +000016 "libaudioutils",
Glenn Kasten8589ce72017-09-08 17:03:42 -070017 "libbinder",
18 "libcutils",
19 "liblog",
Eric Tand6eee712018-09-07 10:58:19 -070020 "libmediametrics",
Glenn Kasten8589ce72017-09-08 17:03:42 -070021 "libutils",
22 ],
23
Eric Tanfefe3162018-09-07 10:09:11 -070024 static_libs: [
25 "libjsoncpp",
26 ],
27
Glenn Kasten8589ce72017-09-08 17:03:42 -070028 cflags: [
29 "-Werror",
30 "-Wall",
31 ],
32
33 include_dirs: ["system/media/audio_utils/include"],
34
35 export_include_dirs: ["include"],
36
37}