Manisha Jajoo | be7e57f | 2019-11-22 10:18:54 +0530 | [diff] [blame] | 1 | cc_library { |
Chong Zhang | 2acd744 | 2020-01-14 12:24:12 -0800 | [diff] [blame] | 2 | name: "libflacextractor", |
| 3 | defaults: ["extractor-defaults"], |
Marco Nelissen | 7522617 | 2016-11-16 14:10:52 -0800 | [diff] [blame] | 4 | |
| 5 | srcs: ["FLACExtractor.cpp"], |
| 6 | |
| 7 | include_dirs: [ |
Marco Nelissen | 7522617 | 2016-11-16 14:10:52 -0800 | [diff] [blame] | 8 | "external/flac/include", |
| 9 | ], |
| 10 | |
| 11 | shared_libs: [ |
Jean-Baptiste Théou | b7fc2ee | 2019-09-12 14:43:04 +0900 | [diff] [blame] | 12 | "libbase", |
Andy Hung | fcc4e61 | 2018-11-15 15:07:19 -0800 | [diff] [blame] | 13 | "libbinder_ndk", |
Marco Nelissen | 7522617 | 2016-11-16 14:10:52 -0800 | [diff] [blame] | 14 | ], |
| 15 | |
| 16 | static_libs: [ |
Ari Hausman-Cohen | 2b674bb | 2018-06-22 14:53:20 -0700 | [diff] [blame] | 17 | "libaudioutils", |
Marco Nelissen | 7522617 | 2016-11-16 14:10:52 -0800 | [diff] [blame] | 18 | "libFLAC", |
Marco Nelissen | 7f3f4c9 | 2018-03-30 09:35:04 -0700 | [diff] [blame] | 19 | "libstagefright_foundation", |
Marco Nelissen | 4d026f5 | 2018-10-04 13:04:29 -0700 | [diff] [blame] | 20 | "libstagefright_metadatautils", |
| 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 | |
Marco Nelissen | 7522617 | 2016-11-16 14:10:52 -0800 | [diff] [blame] | 32 | } |