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