blob: 8a25b8596d1e5b7d5c5b1e42b3632c64fa3cf436 [file] [log] [blame]
Bob Badour948e6aa2021-02-12 21:02:31 -08001package {
2 // See: http://go/android-license-faq
3 // A large-scale-change added 'default_applicable_licenses' to import
4 // all of the 'license_kinds' from "frameworks_av_license"
5 // to get the below license kinds:
6 // SPDX-license-identifier-Apache-2.0
7 default_applicable_licenses: ["frameworks_av_license"],
8}
9
Harish Mahendrakarc873b292020-10-23 05:00:07 +053010cc_benchmark {
11 name: "lvm_benchmark",
12 vendor: true,
Harish Mahendrakarceb74de2021-02-10 14:06:06 -080013 host_supported: true,
Harish Mahendrakarc873b292020-10-23 05:00:07 +053014 srcs: ["lvm_benchmark.cpp"],
15 static_libs: [
16 "libbundlewrapper",
17 "libmusicbundle",
18 ],
19 shared_libs: [
20 "libaudioutils",
21 "liblog",
22 ],
23 header_libs: [
24 "libhardware_headers",
25 ],
26}
Rivukanta Bhattacharyadf6a5fe2020-12-31 02:18:59 +053027
28cc_benchmark {
29 name: "reverb_benchmark",
30 vendor: true,
Harish Mahendrakar6d2e79b2021-02-17 13:47:44 -080031 host_supported: true,
Rivukanta Bhattacharyadf6a5fe2020-12-31 02:18:59 +053032 include_dirs: [
33 "frameworks/av/media/libeffects/lvm/wrapper/Reverb",
34 ],
35 srcs: ["reverb_benchmark.cpp"],
36 static_libs: [
37 "libreverb",
38 "libreverbwrapper",
39 ],
40 shared_libs: [
41 "libaudioutils",
42 "liblog",
43 ],
44 header_libs: [
45 "libaudioeffects",
46 "libhardware_headers",
47 ],
48}