• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1cc_library_shared {
2    name: "libstagefright_ccodec_utils",
3    vendor_available: true,
4
5    srcs: [
6        "Codec2BufferUtils.cpp",
7        "Codec2Mapper.cpp",
8    ],
9
10    cflags: [
11        "-Werror",
12        "-Wall",
13    ],
14
15    export_include_dirs: [
16        ".",
17    ],
18
19    shared_libs: [
20        "libbase",
21        "libcutils",
22        "liblog",
23        "libstagefright_codec2",
24        "libstagefright_codec2_vndk",
25        "libstagefright_foundation",
26        "libutils",
27    ],
28
29    static_libs: [
30        "libyuv_static",
31    ],
32
33    sanitize: {
34        cfi: true,
35        misc_undefined: [
36            "unsigned-integer-overflow",
37            "signed-integer-overflow",
38        ],
39    },
40}
41