aboutsummaryrefslogtreecommitdiff
path: root/libwebm/Android.bp
blob: 60b0277f67090201f6f139f38d185d2eda122ec9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
cc_library_static {
    name: "libwebm",
    srcs: ["mkvparser/mkvparser.cc"],
    cflags: [
        "-Wall",
        "-Werror",
    ],
    export_include_dirs: ["."],
    sanitize: {
        // Enable CFI if this becomes a shared library.
        // cfi: true,
    },
    min_sdk_version: "29",
    host_supported: true,
    target: {
        darwin: {
            enabled: false,
        },
    },
}