Home | History | Annotate | Download | only in timestatsproto
      1 cc_library_shared {
      2     name: "libtimestats_proto",
      3     export_include_dirs: ["include"],
      4 
      5     srcs: [
      6         "TimeStatsHelper.cpp",
      7         "timestats.proto",
      8     ],
      9 
     10     shared_libs: [
     11         "libbase",
     12         "libprotobuf-cpp-lite",
     13     ],
     14 
     15     proto: {
     16         export_proto_headers: true,
     17     },
     18 
     19     cppflags: [
     20         "-std=c++1z",
     21         "-Werror",
     22         "-Wno-c++98-compat-pedantic",
     23         "-Wno-disabled-macro-expansion",
     24         "-Wno-float-conversion",
     25         "-Wno-float-equal",
     26         "-Wno-format",
     27         "-Wno-old-style-cast",
     28         "-Wno-padded",
     29         "-Wno-sign-conversion",
     30         "-Wno-undef",
     31         "-Wno-unused-parameter",
     32     ],
     33 }
     34