blob: 8cfece65022b0b55416c85f6d13ff7ce06b875a6 [file] [log] [blame]
Bob Badour56786ac2021-02-25 15:24:36 -08001package {
2 // See: http://go/android-license-faq
3 // A large-scale-change added 'default_applicable_licenses' to import
4 // all of the 'license_kinds' from "frameworks_av_license"
5 // to get the below license kinds:
6 // SPDX-license-identifier-Apache-2.0
7 default_applicable_licenses: ["frameworks_av_license"],
8}
9
Glenn Kasten8589ce72017-09-08 17:03:42 -070010cc_library_shared {
11
12 name: "libnblog",
13
14 srcs: [
Eric Tanace588c2018-09-12 11:44:43 -070015 "Entry.cpp",
16 "Merger.cpp",
Glenn Kasten8589ce72017-09-08 17:03:42 -070017 "PerformanceAnalysis.cpp",
Eric Tanace588c2018-09-12 11:44:43 -070018 "Reader.cpp",
Glenn Kasten8589ce72017-09-08 17:03:42 -070019 "ReportPerformance.cpp",
Eric Tanace588c2018-09-12 11:44:43 -070020 "Timeline.cpp",
21 "Writer.cpp",
Glenn Kasten8589ce72017-09-08 17:03:42 -070022 ],
23
24 shared_libs: [
Kevin Rocard07be14f2018-01-24 06:14:03 +000025 "libaudioutils",
Glenn Kasten8589ce72017-09-08 17:03:42 -070026 "libbinder",
27 "libcutils",
28 "liblog",
Eric Tand6eee712018-09-07 10:58:19 -070029 "libmediametrics",
Glenn Kasten8589ce72017-09-08 17:03:42 -070030 "libutils",
31 ],
32
Eric Tanfefe3162018-09-07 10:09:11 -070033 static_libs: [
34 "libjsoncpp",
35 ],
36
Glenn Kasten8589ce72017-09-08 17:03:42 -070037 cflags: [
38 "-Werror",
39 "-Wall",
40 ],
41
42 include_dirs: ["system/media/audio_utils/include"],
43
44 export_include_dirs: ["include"],
45
46}