blob: be6551027980dfb9fa4524215b7baa9f5f16dae8 [file] [log] [blame]
Tej Singhe2751772021-04-06 22:05:29 -07001package {
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 Reck38bc8a82024-02-21 17:08:27 -05008 default_team: "trendy_team_android_core_graphics_stack",
Tej Singhe2751772021-04-06 22:05:29 -07009}
10
11cc_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 Reck38bc8a82024-02-21 17:08:27 -050037}