1package { 2 default_applicable_licenses: [ 3 "frameworks_av_media_extractors_flac_license", 4 ], 5} 6 7// Added automatically by a large-scale-change 8// See: http://go/android-license-faq 9license { 10 name: "frameworks_av_media_extractors_flac_license", 11 visibility: [":__subpackages__"], 12 license_kinds: [ 13 "SPDX-license-identifier-Apache-2.0", 14 ], 15 license_text: [ 16 "NOTICE", 17 ], 18} 19 20cc_library { 21 name: "libflacextractor", 22 defaults: ["extractor-defaults", "libbinder_ndk_host_user"], 23 24 srcs: ["FLACExtractor.cpp"], 25 26 include_dirs: [ 27 "external/flac/include", 28 ], 29 30 shared_libs: [ 31 "libbase", 32 "libbinder_ndk", 33 ], 34 35 static_libs: [ 36 "libaudioutils", 37 "libFLAC", 38 "libstagefright_foundation", 39 "libstagefright_metadatautils", 40 "libutils", 41 ], 42 43 host_supported: true, 44 45 target: { 46 darwin: { 47 enabled: false, 48 }, 49 }, 50 51} 52