1package { 2 default_applicable_licenses: [ 3 "frameworks_av_media_extractors_midi_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_midi_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: "libmidiextractor", 22 defaults: ["extractor-defaults"], 23 24 srcs: ["MidiExtractor.cpp"], 25 26 header_libs: [ 27 "libmedia_datasource_headers", 28 ], 29 30 static_libs: [ 31 "libmedia_midiiowrapper", 32 "libsonivoxwithoutjet", 33 "libstagefright_foundation", 34 "libwatchdog", 35 ], 36 37 shared_libs: [ 38 "libbase", 39 ], 40 41 host_supported: true, 42 43 target: { 44 darwin: { 45 enabled: false, 46 }, 47 }, 48} 49