Manisha Jajoo | be7e57f | 2019-11-22 10:18:54 +0530 | [diff] [blame] | 1 | cc_library { |
Chong Zhang | 640b09c | 2020-01-14 12:24:12 -0800 | [diff] [blame] | 2 | name: "libmkvextractor", |
| 3 | defaults: ["extractor-defaults"], |
Colin Cross | 6f82b4d | 2017-04-20 17:30:33 -0700 | [diff] [blame] | 4 | |
| 5 | srcs: ["MatroskaExtractor.cpp"], |
| 6 | |
| 7 | include_dirs: [ |
Wei Jia | f2ddc43 | 2017-05-15 18:56:02 -0700 | [diff] [blame] | 8 | "external/flac/include", |
Colin Cross | 6f82b4d | 2017-04-20 17:30:33 -0700 | [diff] [blame] | 9 | "external/libvpx/libwebm", |
Marco Nelissen | 7522617 | 2016-11-16 14:10:52 -0800 | [diff] [blame] | 10 | "frameworks/av/media/libstagefright/flac/dec", |
Colin Cross | 6f82b4d | 2017-04-20 17:30:33 -0700 | [diff] [blame] | 11 | ], |
| 12 | |
Marco Nelissen | 7522617 | 2016-11-16 14:10:52 -0800 | [diff] [blame] | 13 | shared_libs: [ |
Chong Zhang | 640b09c | 2020-01-14 12:24:12 -0800 | [diff] [blame] | 14 | "libstagefright_flacdec", |
Marco Nelissen | 7522617 | 2016-11-16 14:10:52 -0800 | [diff] [blame] | 15 | ], |
| 16 | |
| 17 | static_libs: [ |
Marco Nelissen | 7f3f4c9 | 2018-03-30 09:35:04 -0700 | [diff] [blame] | 18 | "libstagefright_foundation", |
Dongwon Kang | 7dc218e | 2018-01-29 08:59:33 -0800 | [diff] [blame] | 19 | "libstagefright_metadatautils", |
Marco Nelissen | 7522617 | 2016-11-16 14:10:52 -0800 | [diff] [blame] | 20 | "libwebm", |
Marco Nelissen | 7f3f4c9 | 2018-03-30 09:35:04 -0700 | [diff] [blame] | 21 | "libutils", |
Marco Nelissen | 7522617 | 2016-11-16 14:10:52 -0800 | [diff] [blame] | 22 | ], |
| 23 | |
Ayushi Khopkar | a5bf77d | 2020-06-16 19:07:30 +0530 | [diff] [blame^] | 24 | host_supported: true, |
| 25 | |
| 26 | target: { |
| 27 | darwin: { |
| 28 | enabled: false, |
| 29 | }, |
| 30 | }, |
| 31 | |
Colin Cross | 6f82b4d | 2017-04-20 17:30:33 -0700 | [diff] [blame] | 32 | } |