blob: 54291ad6c64224bbf43ab46f244af55ed8f1cb84 [file] [log] [blame]
Bob Badour3306e492021-02-25 15:35:37 -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_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
Yiwei Zhangbaaef882020-02-02 17:45:30 -080010cc_library_shared {
11 name: "libgfxstats",
12 srcs: [
13 "GpuStats.cpp",
14 ],
15 shared_libs: [
16 "libcutils",
17 "libgraphicsenv",
18 "liblog",
Yiwei Zhang29f85932020-02-04 17:14:54 -080019 "libprotoutil",
Yiwei Zhangb59a1272020-02-04 14:58:01 -080020 "libstatslog",
21 "libstatspull",
22 "libstatssocket",
Yiwei Zhangbaaef882020-02-02 17:45:30 -080023 "libutils",
24 ],
25 export_include_dirs: ["include"],
Yiwei Zhangb59a1272020-02-04 14:58:01 -080026 export_shared_lib_headers: [
27 "libstatspull",
28 "libstatssocket",
29 ],
Yiwei Zhangbaaef882020-02-02 17:45:30 -080030 cppflags: [
31 "-Wall",
32 "-Werror",
33 "-Wformat",
34 "-Wthread-safety",
35 "-Wunused",
36 "-Wunreachable-code",
37 ],
38}