1package {
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
10cc_library_static {
11    name: "libbroadcastring",
12    clang: true,
13    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",
29    clang: true,
30    cflags: [
31        "-Wall",
32        "-Wextra",
33        "-Werror",
34    ],
35    srcs: [
36        "broadcast_ring_test.cc",
37    ],
38    static_libs: [
39        "libbroadcastring",
40    ],
41    shared_libs: [
42        "libbase",
43    ],
44}
45