• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package {
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
10cc_library_shared {
11
12    name: "libnblog",
13
14    srcs: [
15        "Entry.cpp",
16        "Merger.cpp",
17        "PerformanceAnalysis.cpp",
18        "Reader.cpp",
19        "ReportPerformance.cpp",
20        "Timeline.cpp",
21        "Writer.cpp",
22    ],
23
24    shared_libs: [
25        "libaudioutils",
26        "libbinder",
27        "libcutils",
28        "liblog",
29        "libmediametrics",
30        "libutils",
31    ],
32
33    static_libs: [
34        "libjsoncpp",
35    ],
36
37    cflags: [
38        "-Werror",
39        "-Wall",
40    ],
41
42    include_dirs: ["system/media/audio_utils/include"],
43
44    export_include_dirs: ["include"],
45
46}
47