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
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    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}
44