blob: 75b9b7b368f85df921df3881db714ff6c9233376 [file] [log] [blame]
Bob Badour948e6aa2021-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
Manisha Jajoobe7e57f2019-11-22 10:18:54 +053010cc_library {
Chong Zhang640b09c2020-01-14 12:24:12 -080011 name: "libmp3extractor",
12 defaults: ["extractor-defaults"],
Marco Nelissen75226172016-11-16 14:10:52 -080013 srcs: [
14 "MP3Extractor.cpp",
15 "VBRISeeker.cpp",
16 "XINGSeeker.cpp",
17 ],
18
Marco Nelissen75226172016-11-16 14:10:52 -080019 static_libs: [
Marco Nelissen7f3f4c92018-03-30 09:35:04 -070020 "libutils",
Marco Nelissen75226172016-11-16 14:10:52 -080021 "libstagefright_id3",
Marco Nelissen60bfbd72018-12-07 11:55:33 -080022 "libstagefright_foundation",
Marco Nelissen75226172016-11-16 14:10:52 -080023 ],
24
Ayushi Khopkara5bf77d2020-06-16 19:07:30 +053025 host_supported: true,
26
27 target: {
28 darwin: {
29 enabled: false,
30 },
31 },
Marco Nelissen75226172016-11-16 14:10:52 -080032}