blob: 205abdc4bb24b8d41e79961ce21ce1a9c3d9716c [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,
Wonsik Kim155d5cb2019-10-09 12:49:49 -07004 double_loadable: true,
Pawin Vongmasa36653902018-11-15 00:10:25 -08005
6 srcs: [
7 "Codec2BufferUtils.cpp",
8 "Codec2Mapper.cpp",
9 ],
10
11 cflags: [
12 "-Werror",
13 "-Wall",
14 ],
15
16 export_include_dirs: [
17 ".",
18 ],
19
20 shared_libs: [
21 "libbase",
Pawin Vongmasad0f0e142018-11-15 03:36:28 -080022 "libcodec2",
23 "libcodec2_vndk",
Pawin Vongmasa36653902018-11-15 00:10:25 -080024 "libcutils",
25 "liblog",
Pawin Vongmasa36653902018-11-15 00:10:25 -080026 "libstagefright_foundation",
27 "libutils",
28 ],
29
Pawin Vongmasa1f213362019-01-24 06:59:16 -080030 static_libs: [
31 "libyuv_static",
32 ],
33
Pawin Vongmasa36653902018-11-15 00:10:25 -080034 sanitize: {
35 cfi: true,
36 misc_undefined: [
37 "unsigned-integer-overflow",
38 "signed-integer-overflow",
39 ],
Pawin Vongmasa36653902018-11-15 00:10:25 -080040 },
41}