blob: cfc4c4023417d52ca9855db5e60b238d12c4f3f3 [file] [log] [blame]
Bob Badourc8375042021-02-12 21:02:31 -08001package {
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_av_license"
5 // to get the below license kinds:
6 // SPDX-license-identifier-Apache-2.0
7 default_applicable_licenses: ["frameworks_av_license"],
8}
9
Sachin Kumar Garg65926ef2020-10-26 10:15:12 +053010cc_library {
Dan Willemsenefbff672017-10-23 17:51:23 -070011 name: "libmedialogservice",
12
13 srcs: [
14 "IMediaLogService.cpp",
15 "MediaLogService.cpp",
16 ],
17
Marco Nelissen6b285942019-10-21 14:52:30 -070018 header_libs: [
19 "libmedia_headers",
20 ],
21
Dan Willemsenefbff672017-10-23 17:51:23 -070022 shared_libs: [
Kevin Rocard07be14f2018-01-24 06:14:03 +000023 "libaudioutils",
Dan Willemsenefbff672017-10-23 17:51:23 -070024 "libbinder",
25 "liblog",
Andy Hung4ef19fa2018-05-15 19:35:29 -070026 "libmediautils",
Dan Willemsenefbff672017-10-23 17:51:23 -070027 "libnblog",
28 "libutils",
29 ],
30
31 cflags: [
32 "-Werror",
33 "-Wall",
34 ],
35}