1cc_library { 2 name: "libwavextractor", 3 4 defaults: ["extractor-defaults"], 5 6 srcs: ["WAVExtractor.cpp"], 7 8 include_dirs: [ 9 "frameworks/av/media/libstagefright/include", 10 ], 11 12 shared_libs: [ 13 "libbinder_ndk", 14 ], 15 16 static_libs: [ 17 "libaudioutils", 18 "libfifo", 19 "libstagefright_foundation", 20 ], 21 22 host_supported: true, 23 target: { 24 darwin: { 25 enabled: false, 26 }, 27 }, 28} 29