• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package {
2    default_applicable_licenses: ["frameworks_av_media_extractors_amr_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_amr_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: "libamrextractor",
20    defaults: ["extractor-defaults"],
21
22    srcs: ["AMRExtractor.cpp"],
23
24    static_libs: [
25        "libstagefright_foundation",
26    ],
27
28    host_supported: true,
29    target: {
30        darwin: {
31            enabled: false,
32        },
33    }
34}
35