blob: 1ab1de0d3c0a3e795edde3c329c289b215702cbd [file] [log] [blame]
Bob Badour56786ac2021-02-25 15:24:36 -08001package {
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
Steven Moreland8bb9e642017-05-02 13:40:16 -070010cc_library_static {
11 name: "libcpustats",
12
13 srcs: [
14 "CentralTendencyStatistics.cpp",
15 "ThreadCpuUsage.cpp",
16 ],
17
Marco Nelissencf90b492019-09-26 11:20:54 -070018 local_include_dirs: [
19 "include",
20 ],
21
22 export_include_dirs: [
23 "include",
24 ],
25
Steven Moreland8bb9e642017-05-02 13:40:16 -070026 cflags: [
27 "-Werror",
28 "-Wall",
29 ],
Glenn Kasten60bf3dc2017-05-24 11:16:57 -070030
31 host_supported: true,
32
33 target: {
34 darwin: {
35 enabled: false,
36 },
37 },
38
Steven Moreland8bb9e642017-05-02 13:40:16 -070039}