blob: 2eb2f9f14944a38b7c13ee1cb58d014a053b3356 [file] [log] [blame]
Bob Badour3c538232021-02-12 21:26:48 -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 // SPDX-license-identifier-MIT
8 // SPDX-license-identifier-Unicode-DFS
9 default_applicable_licenses: ["frameworks_native_license"],
10}
11
Michael Spangaacc1fc2017-04-07 20:22:17 -040012cc_library_static {
13 name: "libbroadcastring",
14 clang: true,
15 cflags: [
16 "-Wall",
17 "-Wextra",
18 "-Werror",
19 ],
20 export_include_dirs: ["include"],
21 shared_libs: [
22 "libbase",
23 ],
24 export_shared_lib_headers: [
25 "libbase",
26 ],
27}
28
29cc_test {
30 name: "broadcast_ring_tests",
31 clang: true,
32 cflags: [
33 "-Wall",
34 "-Wextra",
35 "-Werror",
36 ],
37 srcs: [
38 "broadcast_ring_test.cc",
39 ],
40 static_libs: [
41 "libbroadcastring",
42 ],
43 shared_libs: [
44 "libbase",
45 ],
46}