1package {
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    default_team: "trendy_team_android_core_graphics_stack",
9}
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    ],
37}
38