blob: 8c8f025aba78f858fd412869e327b91678fec2ad [file] [log] [blame]
Pawin Vongmasa36653902018-11-15 00:10:25 -08001cc_library_shared {
Pawin Vongmasad0f0e142018-11-15 03:36:28 -08002 name: "libsfplugin_ccodec_utils",
Pawin Vongmasa36653902018-11-15 00:10:25 -08003 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",
Pawin Vongmasad0f0e142018-11-15 03:36:28 -080021 "libcodec2",
22 "libcodec2_vndk",
Pawin Vongmasa36653902018-11-15 00:10:25 -080023 "libcutils",
24 "liblog",
Pawin Vongmasa36653902018-11-15 00:10:25 -080025 "libstagefright_foundation",
26 "libutils",
27 ],
28
Pawin Vongmasa1f213362019-01-24 06:59:16 -080029 static_libs: [
30 "libyuv_static",
31 ],
32
Pawin Vongmasa36653902018-11-15 00:10:25 -080033 sanitize: {
34 cfi: true,
35 misc_undefined: [
36 "unsigned-integer-overflow",
37 "signed-integer-overflow",
38 ],
Pawin Vongmasa36653902018-11-15 00:10:25 -080039 },
40}