Bob Badour | 3306e49 | 2021-02-25 15:35:37 -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 | default_applicable_licenses: ["frameworks_native_license"], |
| 8 | } |
| 9 | |
Michael Spang | aacc1fc | 2017-04-07 20:22:17 -0400 | [diff] [blame] | 10 | cc_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 | |
| 27 | cc_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 | } |