1// Build the unit tests for loudness effect tests 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: "loudness_enhancer_tests", 14 srcs: [ 15 "loudness_enhancer_tests.cpp", 16 ], 17 shared_libs: [ 18 "libbase", 19 "liblog", 20 ], 21 static_libs: [ 22 "libldnhncr", 23 ], 24 header_libs: [ 25 "libaudioeffects", 26 "libaudioutils_headers", 27 ], 28 include_dirs: [ 29 "frameworks/av/media/libeffects/loudness", 30 ], 31 cflags: [ 32 "-Wall", 33 "-Werror", 34 "-Wthread-safety", 35 ], 36} 37