blob: 4a4aac1f8745a0387cb4b47a75475a1c8d8c13c5 [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",
Eric Tand6eee712018-09-07 10:58:19 -070016 "libmediametrics",
Glenn Kasten8589ce72017-09-08 17:03:42 -070017 "libutils",
18 ],
19
Eric Tanfefe3162018-09-07 10:09:11 -070020 static_libs: [
21 "libjsoncpp",
22 ],
23
Glenn Kasten8589ce72017-09-08 17:03:42 -070024 cflags: [
25 "-Werror",
26 "-Wall",
27 ],
28
29 include_dirs: ["system/media/audio_utils/include"],
30
31 export_include_dirs: ["include"],
32
33}