blob: 246d14eb2e8fbeeb8889235fae5cd8b32f8af92b [file] [log] [blame]
Bob Badour56786ac2021-02-25 15:24:36 -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_media_libeffects_preprocessing_license"
5 // to get the below license kinds:
6 // SPDX-license-identifier-Apache-2.0
7 default_applicable_licenses: [
8 "frameworks_av_media_libeffects_preprocessing_license",
9 ],
10}
11
Rivukanta Bhattacharyafd605792020-11-13 20:39:52 +053012cc_benchmark {
Rivukanta Bhattacharyafd605792020-11-13 20:39:52 +053013 name: "preprocessing_benchmark",
14 vendor: true,
15 relative_install_path: "soundfx",
16 srcs: ["preprocessing_benchmark.cpp"],
17 shared_libs: [
18 "libaudiopreprocessing",
19 "libaudioutils",
20 "liblog",
21 "libutils",
22 ],
23 cflags: [
24 "-DWEBRTC_POSIX",
25 "-fvisibility=default",
26 "-Wall",
27 "-Werror",
28 "-Wextra",
29 ],
30 header_libs: [
31 "libaudioeffects",
32 "libhardware_headers",
33 "libwebrtc_absl_headers",
34 ],
35}