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.
49 lines
1.1 KiB
49 lines
1.1 KiB
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_license"
|
|
// to get the below license kinds:
|
|
// SPDX-license-identifier-Apache-2.0
|
|
default_applicable_licenses: ["frameworks_av_license"],
|
|
}
|
|
|
|
cc_benchmark {
|
|
name: "lvm_benchmark",
|
|
vendor: true,
|
|
host_supported: true,
|
|
srcs: ["lvm_benchmark.cpp"],
|
|
static_libs: [
|
|
"libbundlewrapper",
|
|
"libmusicbundle",
|
|
],
|
|
shared_libs: [
|
|
"libaudioutils",
|
|
"liblog",
|
|
],
|
|
header_libs: [
|
|
"libhardware_headers",
|
|
],
|
|
}
|
|
|
|
cc_benchmark {
|
|
name: "reverb_benchmark",
|
|
vendor: true,
|
|
host_supported: true,
|
|
include_dirs: [
|
|
"frameworks/av/media/libeffects/lvm/wrapper/Reverb",
|
|
],
|
|
srcs: ["reverb_benchmark.cpp"],
|
|
static_libs: [
|
|
"libreverb",
|
|
"libreverbwrapper",
|
|
],
|
|
shared_libs: [
|
|
"libaudioutils",
|
|
"liblog",
|
|
],
|
|
header_libs: [
|
|
"libaudioeffects",
|
|
"libhardware_headers",
|
|
],
|
|
}
|