blob: 13af470a26d0818a739b3d3c2bc37e27a7797bb1 [file] [log] [blame]
Michael Spangaacc1fc2017-04-07 20:22:17 -04001cc_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
18cc_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}