blob: bcc3e4e52a2b90a2fba5a2bea506ab246a9a93de [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
Vishnu Nairdf6a4f62020-11-11 20:25:34 -080010cc_library {
Mikael Pessa2e1608f2019-07-19 11:25:35 -070011 name: "libtimestats",
Mikael Pessa2e1608f2019-07-19 11:25:35 -070012 srcs: [
Yiwei Zhangd7927052020-01-13 16:05:01 -080013 "TimeStats.cpp",
14 ],
15 shared_libs: [
Peiyong Lin65248e02020-04-18 21:15:07 -070016 "android.hardware.graphics.composer@2.4",
Yiwei Zhangd7927052020-01-13 16:05:01 -080017 "libbase",
18 "libcutils",
19 "liblog",
20 "libprotobuf-cpp-lite",
Tej Singhe2751772021-04-06 22:05:29 -070021 "libtimestats_atoms_proto",
Yiwei Zhangd7927052020-01-13 16:05:01 -080022 "libtimestats_proto",
23 "libui",
24 "libutils",
Mikael Pessa2e1608f2019-07-19 11:25:35 -070025 ],
26 export_include_dirs: ["."],
Yiwei Zhangd7927052020-01-13 16:05:01 -080027 export_shared_lib_headers: [
28 "libtimestats_proto",
29 ],
30 cppflags: [
31 "-Wall",
32 "-Werror",
33 "-Wformat",
34 "-Wthread-safety",
35 "-Wunused",
36 "-Wunreachable-code",
Mikael Pessa2e1608f2019-07-19 11:25:35 -070037 ],
38}