• 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_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    header_libs: [
16        "libscheduler_headers",
17    ],
18    shared_libs: [
19        "android.hardware.graphics.composer@2.4",
20        "libbase",
21        "libcutils",
22        "liblog",
23        "libprotobuf-cpp-lite",
24        "libtimestats_atoms_proto",
25        "libtimestats_proto",
26        "libui",
27        "libutils",
28    ],
29    export_include_dirs: ["."],
30    export_header_lib_headers: [
31        "libscheduler_headers",
32    ],
33    export_shared_lib_headers: [
34        "libtimestats_proto",
35    ],
36    cppflags: [
37        "-Wall",
38        "-Werror",
39        "-Wformat",
40        "-Wthread-safety",
41        "-Wunused",
42        "-Wunreachable-code",
43    ],
44}
45