Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1 | cc_library_shared { |
Pawin Vongmasa | d0f0e14 | 2018-11-15 03:36:28 -0800 | [diff] [blame] | 2 | name: "libsfplugin_ccodec_utils", |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 3 | vendor_available: true, |
Jooyung Han | e3cf41a | 2020-04-30 04:22:22 +0900 | [diff] [blame] | 4 | min_sdk_version: "29", |
Wonsik Kim | 155d5cb | 2019-10-09 12:49:49 -0700 | [diff] [blame] | 5 | double_loadable: true, |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 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", |
Pawin Vongmasa | d0f0e14 | 2018-11-15 03:36:28 -0800 | [diff] [blame] | 23 | "libcodec2", |
| 24 | "libcodec2_vndk", |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 25 | "libcutils", |
| 26 | "liblog", |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 27 | "libstagefright_foundation", |
| 28 | "libutils", |
| 29 | ], |
| 30 | |
Pawin Vongmasa | 1f21336 | 2019-01-24 06:59:16 -0800 | [diff] [blame] | 31 | static_libs: [ |
| 32 | "libyuv_static", |
| 33 | ], |
| 34 | |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 35 | sanitize: { |
| 36 | cfi: true, |
| 37 | misc_undefined: [ |
| 38 | "unsigned-integer-overflow", |
| 39 | "signed-integer-overflow", |
| 40 | ], |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 41 | }, |
| 42 | } |