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