blob: 37b2ae079500c4d7662d380e54361d7a4e4d1e66 [file] [log] [blame]
Dan Willemsen154fce42018-11-16 23:15:45 -08001// audio preprocessing wrapper
Bob Badour948e6aa2021-02-12 21:02:31 -08002package {
3 default_applicable_licenses: [
4 "frameworks_av_media_libeffects_preprocessing_license",
5 ],
6}
7
8// Added automatically by a large-scale-change
9// See: http://go/android-license-faq
10license {
11 name: "frameworks_av_media_libeffects_preprocessing_license",
12 visibility: [":__subpackages__"],
13 license_kinds: [
14 "SPDX-license-identifier-Apache-2.0",
15 ],
16 license_text: [
17 "NOTICE",
18 ],
19}
20
Andy Hung70bb12e2021-03-02 09:17:01 -080021cc_library {
Saketh Sathuvalli08337032020-09-22 21:13:45 +053022 name: "libaudiopreprocessing",
23 vendor: true,
24 relative_install_path: "soundfx",
Rivukanta Bhattacharya013e02e2021-03-12 05:50:55 +053025 host_supported: true,
Saketh Sathuvalli08337032020-09-22 21:13:45 +053026 srcs: ["PreProcessing.cpp"],
27 local_include_dirs: [
28 ".",
29 ],
30 cflags: [
31 "-Wall",
32 "-Werror",
33 "-Wextra",
34 "-Wno-unused-parameter",
35 ],
36
37 shared_libs: [
38 "liblog",
39 "libutils",
40 ],
41
42 static_libs: [
43 "webrtc_audio_processing",
44 ],
45
46 header_libs: [
47 "libaudioeffects",
48 "libhardware_headers",
49 "libwebrtc_absl_headers",
50 ],
51}