• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package {
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
10cc_library {
11    name: "libmp3extractor",
12    defaults: ["extractor-defaults"],
13    srcs: [
14            "MP3Extractor.cpp",
15            "VBRISeeker.cpp",
16            "XINGSeeker.cpp",
17    ],
18
19    static_libs: [
20        "libutils",
21        "libstagefright_id3",
22        "libstagefright_foundation",
23    ],
24
25    host_supported: true,
26
27    target: {
28        darwin: {
29            enabled: false,
30        },
31    },
32}
33