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_native_license"
5    // to get the below license kinds:
6    //   SPDX-license-identifier-Apache-2.0
7    default_applicable_licenses: ["frameworks_native_license"],
8}
9
10cc_library_shared {
11    name: "libgfxstats",
12    srcs: [
13        "GpuStats.cpp",
14    ],
15    shared_libs: [
16        "libcutils",
17        "libgraphicsenv",
18        "liblog",
19        "libprotoutil",
20        "libstatslog",
21        "libstatspull",
22        "libstatssocket",
23        "libutils",
24    ],
25    export_include_dirs: ["include"],
26    export_shared_lib_headers: [
27        "libstatspull",
28        "libstatssocket",
29    ],
30    cppflags: [
31        "-Wall",
32        "-Werror",
33        "-Wformat",
34        "-Wthread-safety",
35        "-Wunused",
36        "-Wunreachable-code",
37    ],
38}
39