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 {
11    name: "libtimestats",
12    srcs: [
13        "TimeStats.cpp",
14    ],
15    shared_libs: [
16        "android.hardware.graphics.composer@2.4",
17        "libbase",
18        "libcutils",
19        "liblog",
20        "libprotobuf-cpp-lite",
21        "libtimestats_atoms_proto",
22        "libtimestats_proto",
23        "libui",
24        "libutils",
25    ],
26    export_include_dirs: ["."],
27    export_shared_lib_headers: [
28        "libtimestats_proto",
29    ],
30    cppflags: [
31        "-Wall",
32        "-Werror",
33        "-Wformat",
34        "-Wthread-safety",
35        "-Wunused",
36        "-Wunreachable-code",
37    ],
38}
39