blob: c1b22955ed1f54c61ee5e2208c05f0119e05d57a [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_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,
Rivukanta Bhattacharyafd605792020-11-13 20:39:52 +053015 srcs: ["preprocessing_benchmark.cpp"],
16 shared_libs: [
Rivukanta Bhattacharyafd605792020-11-13 20:39:52 +053017 "libaudioutils",
18 "liblog",
19 "libutils",
20 ],
Andy Hung70bb12e2021-03-02 09:17:01 -080021 static_libs: [
22 "libaudiopreprocessing",
23 "webrtc_audio_processing",
24 ],
Rivukanta Bhattacharyafd605792020-11-13 20:39:52 +053025 cflags: [
26 "-DWEBRTC_POSIX",
27 "-fvisibility=default",
28 "-Wall",
29 "-Werror",
30 "-Wextra",
31 ],
32 header_libs: [
33 "libaudioeffects",
34 "libhardware_headers",
35 "libwebrtc_absl_headers",
36 ],
37}