blob: e72ca74ba756f33a3e341336b818ba8d21286bd5 [file] [log] [blame]
Bob Badour3306e492021-02-25 15:35:37 -08001package {
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
Michael Spangaacc1fc2017-04-07 20:22:17 -040010cc_library_static {
11 name: "libbroadcastring",
Alixcb067f02022-04-15 19:24:53 +000012
Michael Spangaacc1fc2017-04-07 20:22:17 -040013 cflags: [
14 "-Wall",
15 "-Wextra",
16 "-Werror",
17 ],
18 export_include_dirs: ["include"],
19 shared_libs: [
20 "libbase",
21 ],
22 export_shared_lib_headers: [
23 "libbase",
24 ],
25}
26
27cc_test {
28 name: "broadcast_ring_tests",
Michael Spangaacc1fc2017-04-07 20:22:17 -040029 cflags: [
30 "-Wall",
31 "-Wextra",
32 "-Werror",
33 ],
34 srcs: [
35 "broadcast_ring_test.cc",
36 ],
37 static_libs: [
38 "libbroadcastring",
39 ],
40 shared_libs: [
41 "libbase",
42 ],
43}