• 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    export_include_dirs: [
20        "include",
21    ],
22
23    static_libs: [
24        "libutils",
25        "libstagefright_id3",
26        "libstagefright_foundation",
27    ],
28
29    host_supported: true,
30
31    target: {
32        darwin: {
33            enabled: false,
34        },
35    },
36}
37