Marco Nelissen | 7522617 | 2016-11-16 14:10:52 -0800 | [diff] [blame] | 1 | cc_library_shared { |
| 2 | |
| 3 | srcs: [ |
| 4 | "MP3Extractor.cpp", |
| 5 | "VBRISeeker.cpp", |
| 6 | "XINGSeeker.cpp", |
| 7 | ], |
| 8 | |
| 9 | include_dirs: [ |
| 10 | "frameworks/av/media/libstagefright/include", |
| 11 | ], |
| 12 | |
| 13 | shared_libs: [ |
Dongwon Kang | f129a5f | 2017-10-06 14:59:14 -0700 | [diff] [blame^] | 14 | "liblog", |
Marco Nelissen | 7522617 | 2016-11-16 14:10:52 -0800 | [diff] [blame] | 15 | "libmedia", |
Dongwon Kang | f129a5f | 2017-10-06 14:59:14 -0700 | [diff] [blame^] | 16 | "libstagefright", |
Marco Nelissen | 7522617 | 2016-11-16 14:10:52 -0800 | [diff] [blame] | 17 | "libstagefright_foundation", |
| 18 | "libutils", |
Marco Nelissen | 7522617 | 2016-11-16 14:10:52 -0800 | [diff] [blame] | 19 | ], |
| 20 | |
| 21 | static_libs: [ |
| 22 | "libstagefright_id3", |
| 23 | ], |
| 24 | |
| 25 | name: "libmp3extractor", |
| 26 | relative_install_path: "extractors", |
| 27 | |
| 28 | compile_multilib: "first", |
| 29 | |
| 30 | cflags: [ |
| 31 | "-Werror", |
| 32 | "-Wall", |
| 33 | "-fvisibility=hidden", |
| 34 | ], |
| 35 | |
| 36 | sanitize: { |
| 37 | cfi: true, |
| 38 | misc_undefined: [ |
| 39 | "unsigned-integer-overflow", |
| 40 | "signed-integer-overflow", |
| 41 | ], |
| 42 | diag: { |
| 43 | cfi: true, |
| 44 | }, |
| 45 | }, |
| 46 | |
| 47 | } |