blob: 0cf086fe012c5162b8b02dd41f386a693614e662 [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"],
8}
9
10cc_library {
11 name: "libtimestats_atoms_proto",
12 export_include_dirs: ["include"],
13
14 srcs: [
15 "timestats_atoms.proto",
16 ],
17
18 proto: {
19 type: "lite",
20 export_proto_headers: true,
21 },
22
23 cppflags: [
24 "-Werror",
25 "-Wno-c++98-compat-pedantic",
26 "-Wno-disabled-macro-expansion",
27 "-Wno-float-conversion",
28 "-Wno-float-equal",
29 "-Wno-format",
30 "-Wno-old-style-cast",
31 "-Wno-padded",
32 "-Wno-sign-conversion",
33 "-Wno-undef",
34 "-Wno-unused-parameter",
35 ],
36}