1// Build the unit tests for spatializer effect 2 3package { 4 default_team: "trendy_team_media_framework_audio", 5 // See: http://go/android-license-faq 6 // A large-scale-change added 'default_applicable_licenses' to import 7 // all of the 'license_kinds' from "frameworks_av_license" 8 // to get the below license kinds: 9 // SPDX-license-identifier-Apache-2.0 10 default_applicable_licenses: ["frameworks_av_license"], 11} 12 13cc_test { 14 name: "SpatializerTest", 15 defaults: [ 16 "libeffects-test-defaults", 17 ], 18 host_supported: false, 19 srcs: [ 20 "SpatializerTest.cpp", 21 ], 22} 23