blob: d526162d7b5d3228787a60da31e77d794b20c48e [file] [log] [blame]
Bob Badour8117c2a2021-02-03 18:31:58 -08001package {
2 // http://go/android-license-faq
3 // A large-scale-change added 'default_applicable_licenses' to import
4 // the below license kinds from "system_media_license":
5 // SPDX-license-identifier-Apache-2.0
6 default_applicable_licenses: ["system_media_license"],
7}
8
Dan Willemsena2b50fb2016-09-22 16:05:13 -07009cc_library_shared {
10 name: "libradio_metadata",
Steven Morelandc06e7d52017-04-17 16:42:15 -070011 vendor_available: true,
Justin Yun951503a2017-07-24 15:19:45 +090012 vndk: {
13 enabled: true,
14 },
Dan Willemsena2b50fb2016-09-22 16:05:13 -070015
Tomasz Wasilczyka3dfbcb2017-01-23 14:33:50 -080016 srcs: [
17 "src/radio_metadata.c",
18 "src/RadioMetadataWrapper.cpp",
19 ],
Dan Willemsena2b50fb2016-09-22 16:05:13 -070020
21 cflags: [
22 "-Werror",
23 "-Wall",
24 "-fvisibility=hidden",
25 ],
26
Steven Moreland131eff92017-04-17 19:37:28 -070027 header_libs: ["libsystem_headers"],
28 export_header_lib_headers: ["libsystem_headers"],
29
Dan Willemsena2b50fb2016-09-22 16:05:13 -070030 local_include_dirs: ["include"],
31 export_include_dirs: ["include"],
32
33 shared_libs: [
34 "libcutils",
35 "liblog",
36 ],
37}