Home | History | Annotate | Download | only in libbroadcastring
      1 cc_library_static {
      2     name: "libbroadcastring",
      3     clang: true,
      4     cflags: [
      5         "-Wall",
      6         "-Wextra",
      7         "-Werror",
      8     ],
      9     export_include_dirs: ["include"],
     10     shared_libs: [
     11         "libbase",
     12     ],
     13     export_shared_lib_headers: [
     14         "libbase",
     15     ],
     16 }
     17 
     18 cc_test {
     19     name: "broadcast_ring_tests",
     20     clang: true,
     21     cflags: [
     22         "-Wall",
     23         "-Wextra",
     24         "-Werror",
     25     ],
     26     srcs: [
     27         "broadcast_ring_test.cc",
     28     ],
     29     static_libs: [
     30         "libbroadcastring",
     31     ],
     32     shared_libs: [
     33         "libbase",
     34     ],
     35 }
     36