You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
907 B
39 lines
907 B
// Build testbench for downmix module.
|
|
package {
|
|
// See: http://go/android-license-faq
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
// all of the 'license_kinds' from "frameworks_av_media_libeffects_downmix_license"
|
|
// to get the below license kinds:
|
|
// SPDX-license-identifier-Apache-2.0
|
|
default_applicable_licenses: [
|
|
"frameworks_av_media_libeffects_downmix_license",
|
|
],
|
|
}
|
|
|
|
cc_benchmark {
|
|
name: "downmix_benchmark",
|
|
host_supported: false,
|
|
vendor: true,
|
|
include_dirs: [
|
|
"frameworks/av/media/libeffects/downmix",
|
|
],
|
|
header_libs: [
|
|
"libaudioeffects",
|
|
],
|
|
shared_libs: [
|
|
"liblog",
|
|
],
|
|
static_libs: [
|
|
"libaudioutils",
|
|
"libdownmix",
|
|
],
|
|
srcs: [
|
|
"downmix_benchmark.cpp",
|
|
],
|
|
cflags: [
|
|
"-Wall",
|
|
"-Werror",
|
|
"-Wextra",
|
|
],
|
|
}
|