• 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 "external_libvpx_license"
5    // to get the below license kinds:
6    //   SPDX-license-identifier-BSD
7    default_applicable_licenses: ["external_libvpx_license"],
8}
9
10cc_library_static {
11    name: "libwebm",
12    srcs: ["mkvparser/mkvparser.cc"],
13    cflags: [
14        "-Wall",
15        "-Werror",
16    ],
17    export_include_dirs: ["."],
18    sanitize: {
19        // Enable CFI if this becomes a shared library.
20        // cfi: true,
21    },
22    min_sdk_version: "29",
23    apex_available: [
24        "//apex_available:platform",
25        "com.android.media",
26    ],
27    host_supported: true,
28    target: {
29        darwin: {
30            enabled: false,
31        },
32    },
33}
34