• Home
  • History
  • Annotate
  • 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    host_supported: true,
24    target: {
25        darwin: {
26            enabled: false,
27        },
28    },
29}
30