Bob Badour | 3c53823 | 2021-02-12 21:26:48 -0800 | [diff] [blame] | 1 | package { |
| 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 Spang | aacc1fc | 2017-04-07 20:22:17 -0400 | [diff] [blame] | 12 | cc_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 | |
| 29 | cc_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 | } |