Tej Singh | e275177 | 2021-04-06 22:05:29 -0700 | [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"], |
John Reck | 38bc8a8 | 2024-02-21 17:08:27 -0500 | [diff] [blame^] | 8 | default_team: "trendy_team_android_core_graphics_stack", |
Tej Singh | e275177 | 2021-04-06 22:05:29 -0700 | [diff] [blame] | 9 | } |
| 10 | |
| 11 | cc_library { |
| 12 | name: "libtimestats_atoms_proto", |
| 13 | export_include_dirs: ["include"], |
| 14 | |
| 15 | srcs: [ |
| 16 | "timestats_atoms.proto", |
| 17 | ], |
| 18 | |
| 19 | proto: { |
| 20 | type: "lite", |
| 21 | export_proto_headers: true, |
| 22 | }, |
| 23 | |
| 24 | cppflags: [ |
| 25 | "-Werror", |
| 26 | "-Wno-c++98-compat-pedantic", |
| 27 | "-Wno-disabled-macro-expansion", |
| 28 | "-Wno-float-conversion", |
| 29 | "-Wno-float-equal", |
| 30 | "-Wno-format", |
| 31 | "-Wno-old-style-cast", |
| 32 | "-Wno-padded", |
| 33 | "-Wno-sign-conversion", |
| 34 | "-Wno-undef", |
| 35 | "-Wno-unused-parameter", |
| 36 | ], |
John Reck | 38bc8a8 | 2024-02-21 17:08:27 -0500 | [diff] [blame^] | 37 | } |