Saketh Sathuvalli | 4ece3e0 | 2020-07-19 21:19:39 +0530 | [diff] [blame] | 1 | // audio preprocessing unit test |
Bob Badour | c837504 | 2021-02-12 21:02:31 -0800 | [diff] [blame^] | 2 | package { |
| 3 | // See: http://go/android-license-faq |
| 4 | // A large-scale-change added 'default_applicable_licenses' to import |
| 5 | // all of the 'license_kinds' from "frameworks_av_media_libeffects_preprocessing_license" |
| 6 | // to get the below license kinds: |
| 7 | // SPDX-license-identifier-Apache-2.0 |
| 8 | default_applicable_licenses: [ |
| 9 | "frameworks_av_media_libeffects_preprocessing_license", |
| 10 | ], |
| 11 | } |
| 12 | |
Saketh Sathuvalli | 4ece3e0 | 2020-07-19 21:19:39 +0530 | [diff] [blame] | 13 | cc_test { |
| 14 | name: "AudioPreProcessingTest", |
| 15 | |
| 16 | vendor: true, |
| 17 | |
| 18 | relative_install_path: "soundfx", |
| 19 | |
| 20 | srcs: ["PreProcessingTest.cpp"], |
| 21 | |
| 22 | shared_libs: [ |
| 23 | "libaudiopreprocessing", |
| 24 | "libaudioutils", |
| 25 | "liblog", |
| 26 | "libutils", |
Saketh Sathuvalli | 4ece3e0 | 2020-07-19 21:19:39 +0530 | [diff] [blame] | 27 | ], |
Saketh Sathuvalli | 4ece3e0 | 2020-07-19 21:19:39 +0530 | [diff] [blame] | 28 | header_libs: [ |
| 29 | "libaudioeffects", |
| 30 | "libhardware_headers", |
| 31 | ], |
Julien Desprez | 732654d | 2021-02-09 14:28:04 -0800 | [diff] [blame] | 32 | gtest: false, |
Saketh Sathuvalli | 4ece3e0 | 2020-07-19 21:19:39 +0530 | [diff] [blame] | 33 | } |
Rivukanta Bhattacharya | 46ab24a | 2021-01-25 20:33:35 +0530 | [diff] [blame] | 34 | |
| 35 | cc_test { |
| 36 | name: "correlation", |
| 37 | host_supported: true, |
| 38 | srcs: ["correlation.cpp"], |
| 39 | cflags: [ |
| 40 | "-Wall", |
| 41 | "-Werror", |
| 42 | "-Wextra", |
| 43 | ], |
Julien Desprez | 732654d | 2021-02-09 14:28:04 -0800 | [diff] [blame] | 44 | gtest: false, |
Rivukanta Bhattacharya | 46ab24a | 2021-01-25 20:33:35 +0530 | [diff] [blame] | 45 | } |