• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package {
2    default_applicable_licenses: ["frameworks_av_media_extractors_ogg_license"],
3}
4
5// Added automatically by a large-scale-change
6// See: http://go/android-license-faq
7license {
8    name: "frameworks_av_media_extractors_ogg_license",
9    visibility: [":__subpackages__"],
10    license_kinds: [
11        "SPDX-license-identifier-Apache-2.0",
12    ],
13    license_text: [
14        "NOTICE",
15    ],
16}
17
18cc_library {
19    name: "liboggextractor",
20
21    defaults: ["extractor-defaults"],
22
23    srcs: ["OggExtractor.cpp"],
24
25    include_dirs: [
26        "external/tremolo",
27    ],
28
29    header_libs: [
30        "libaudio_system_headers",
31    ],
32
33    static_libs: [
34        "libstagefright_foundation",
35        "libstagefright_metadatautils",
36        "libutils",
37        "libvorbisidec",
38    ],
39
40    host_supported: true,
41
42    target: {
43        darwin: {
44            enabled: false,
45        },
46    },
47}
48