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