Dan Willemsen | 154fce4 | 2018-11-16 23:15:45 -0800 | [diff] [blame] | 1 | // audio preprocessing wrapper |
Bob Badour | 56786ac | 2021-02-25 15:24:36 -0800 | [diff] [blame^] | 2 | package { |
| 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 |
| 10 | license { |
| 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 | |
Dan Willemsen | 154fce4 | 2018-11-16 23:15:45 -0800 | [diff] [blame] | 21 | cc_library_shared { |
Saketh Sathuvalli | 0833703 | 2020-09-22 21:13:45 +0530 | [diff] [blame] | 22 | name: "libaudiopreprocessing", |
| 23 | vendor: true, |
| 24 | relative_install_path: "soundfx", |
| 25 | srcs: ["PreProcessing.cpp"], |
| 26 | local_include_dirs: [ |
| 27 | ".", |
| 28 | ], |
| 29 | cflags: [ |
| 30 | "-Wall", |
| 31 | "-Werror", |
| 32 | "-Wextra", |
| 33 | "-Wno-unused-parameter", |
| 34 | ], |
| 35 | |
| 36 | shared_libs: [ |
| 37 | "liblog", |
| 38 | "libutils", |
| 39 | ], |
| 40 | |
| 41 | static_libs: [ |
| 42 | "webrtc_audio_processing", |
| 43 | ], |
| 44 | |
| 45 | header_libs: [ |
| 46 | "libaudioeffects", |
| 47 | "libhardware_headers", |
| 48 | "libwebrtc_absl_headers", |
| 49 | ], |
| 50 | } |