Pawin Vongmasa | e55ed3f | 2018-11-28 03:39:57 -0800 | [diff] [blame] | 1 | cc_library_shared { |
| 2 | name: "libmedia_codecserviceregistrant", |
Chong Zhang | 0b83feb | 2018-12-20 17:44:13 -0800 | [diff] [blame] | 3 | vendor_available: true, |
Pawin Vongmasa | e55ed3f | 2018-11-28 03:39:57 -0800 | [diff] [blame] | 4 | srcs: [ |
| 5 | "CodecServiceRegistrant.cpp", |
| 6 | ], |
| 7 | |
| 8 | header_libs: [ |
| 9 | "libmedia_headers", |
| 10 | ], |
| 11 | |
| 12 | shared_libs: [ |
| 13 | "android.hardware.media.c2@1.0", |
| 14 | "libbase", |
| 15 | "libcodec2_hidl@1.0", |
| 16 | "libcodec2_vndk", |
| 17 | "libutils", |
| 18 | ], |
| 19 | |
| 20 | // Codecs |
| 21 | runtime_libs: [ |
| 22 | "libcodec2_soft_avcdec", |
| 23 | "libcodec2_soft_avcenc", |
| 24 | "libcodec2_soft_aacdec", |
| 25 | "libcodec2_soft_aacenc", |
| 26 | "libcodec2_soft_amrnbdec", |
| 27 | "libcodec2_soft_amrnbenc", |
| 28 | "libcodec2_soft_amrwbdec", |
| 29 | "libcodec2_soft_amrwbenc", |
| 30 | "libcodec2_soft_hevcdec", |
| 31 | "libcodec2_soft_g711alawdec", |
| 32 | "libcodec2_soft_g711mlawdec", |
| 33 | "libcodec2_soft_mpeg2dec", |
| 34 | "libcodec2_soft_h263dec", |
| 35 | "libcodec2_soft_h263enc", |
| 36 | "libcodec2_soft_mpeg4dec", |
| 37 | "libcodec2_soft_mpeg4enc", |
| 38 | "libcodec2_soft_mp3dec", |
| 39 | "libcodec2_soft_vorbisdec", |
| 40 | "libcodec2_soft_opusdec", |
Manisha Jajoo | c237cbc | 2018-11-16 18:56:20 +0530 | [diff] [blame^] | 41 | "libcodec2_soft_opusenc", |
Pawin Vongmasa | e55ed3f | 2018-11-28 03:39:57 -0800 | [diff] [blame] | 42 | "libcodec2_soft_vp8dec", |
| 43 | "libcodec2_soft_vp9dec", |
Ray Essick | 707c146 | 2018-12-05 15:21:35 -0800 | [diff] [blame] | 44 | "libcodec2_soft_av1dec", |
Pawin Vongmasa | e55ed3f | 2018-11-28 03:39:57 -0800 | [diff] [blame] | 45 | "libcodec2_soft_vp8enc", |
| 46 | "libcodec2_soft_vp9enc", |
| 47 | "libcodec2_soft_rawdec", |
| 48 | "libcodec2_soft_flacdec", |
| 49 | "libcodec2_soft_flacenc", |
| 50 | "libcodec2_soft_gsmdec", |
| 51 | "libcodec2_soft_xaacdec", |
| 52 | ], |
| 53 | |
| 54 | compile_multilib: "32", |
| 55 | } |
| 56 | |