• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package {
2    default_applicable_licenses: ["frameworks_av_media_extractors_mkv_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_mkv_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: "libmkvextractor",
20    defaults: ["extractor-defaults"],
21
22    srcs: ["MatroskaExtractor.cpp"],
23
24    include_dirs: [
25        "external/flac/include",
26        "external/libvpx/libwebm",
27        "frameworks/av/media/libstagefright/flac/dec",
28    ],
29
30    shared_libs: [
31        "libstagefright_flacdec",
32    ],
33
34    static_libs: [
35        "libstagefright_foundation_colorutils_ndk",   // for mainline-safe ColorUtils
36        "libstagefright_foundation",
37        "libstagefright_metadatautils",
38        "libwebm",
39        "libutils",
40    ],
41
42    host_supported: true,
43
44    target: {
45        darwin: {
46            enabled: false,
47        },
48    },
49
50}
51