blob: 628722162a9e6ed12ef097e0903239e5bd0ccf2a [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,
Jooyung Hane3cf41a2020-04-30 04:22:22 +09004 min_sdk_version: "29",
Wonsik Kim155d5cb2019-10-09 12:49:49 -07005 double_loadable: true,
Pawin Vongmasa36653902018-11-15 00:10:25 -08006
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",
Pawin Vongmasad0f0e142018-11-15 03:36:28 -080023 "libcodec2",
24 "libcodec2_vndk",
Pawin Vongmasa36653902018-11-15 00:10:25 -080025 "libcutils",
26 "liblog",
Pawin Vongmasa36653902018-11-15 00:10:25 -080027 "libstagefright_foundation",
28 "libutils",
29 ],
30
Pawin Vongmasa1f213362019-01-24 06:59:16 -080031 static_libs: [
32 "libyuv_static",
33 ],
34
Pawin Vongmasa36653902018-11-15 00:10:25 -080035 sanitize: {
36 cfi: true,
37 misc_undefined: [
38 "unsigned-integer-overflow",
39 "signed-integer-overflow",
40 ],
Pawin Vongmasa36653902018-11-15 00:10:25 -080041 },
42}