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_static {
11    name: "libcpustats",
12
13    srcs: [
14        "CentralTendencyStatistics.cpp",
15        "ThreadCpuUsage.cpp",
16    ],
17
18    local_include_dirs: [
19        "include",
20    ],
21
22    export_include_dirs: [
23        "include",
24    ],
25
26    cflags: [
27        "-Wall",
28        "-Werror",
29    ],
30
31    host_supported: true,
32
33    target: {
34        darwin: {
35            enabled: false,
36        },
37    },
38
39}
40