Bob Badour | 3306e49 | 2021-02-25 15:35:37 -0800 | [diff] [blame] | 1 | package { |
| 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 Zhang | baaef88 | 2020-02-02 17:45:30 -0800 | [diff] [blame] | 10 | cc_library_shared { |
| 11 | name: "libgfxstats", |
| 12 | srcs: [ |
| 13 | "GpuStats.cpp", |
| 14 | ], |
| 15 | shared_libs: [ |
| 16 | "libcutils", |
| 17 | "libgraphicsenv", |
| 18 | "liblog", |
Yiwei Zhang | 29f8593 | 2020-02-04 17:14:54 -0800 | [diff] [blame] | 19 | "libprotoutil", |
Yiwei Zhang | b59a127 | 2020-02-04 14:58:01 -0800 | [diff] [blame] | 20 | "libstatslog", |
| 21 | "libstatspull", |
| 22 | "libstatssocket", |
Yiwei Zhang | baaef88 | 2020-02-02 17:45:30 -0800 | [diff] [blame] | 23 | "libutils", |
| 24 | ], |
| 25 | export_include_dirs: ["include"], |
Yiwei Zhang | b59a127 | 2020-02-04 14:58:01 -0800 | [diff] [blame] | 26 | export_shared_lib_headers: [ |
| 27 | "libstatspull", |
| 28 | "libstatssocket", |
| 29 | ], |
Yiwei Zhang | baaef88 | 2020-02-02 17:45:30 -0800 | [diff] [blame] | 30 | cppflags: [ |
| 31 | "-Wall", |
| 32 | "-Werror", |
| 33 | "-Wformat", |
| 34 | "-Wthread-safety", |
| 35 | "-Wunused", |
| 36 | "-Wunreachable-code", |
| 37 | ], |
| 38 | } |