Saketh Sathuvalli | b99e1bc | 2018-02-21 17:10:34 +0530 | [diff] [blame] | 1 | // Build the unit tests for effects |
| 2 | |
| 3 | cc_test { |
| 4 | name: "lvmtest", |
| 5 | host_supported: false, |
| 6 | proprietary: true, |
| 7 | |
| 8 | include_dirs: [ |
| 9 | "frameworks/av/media/libeffects/lvm/lib/Bass/lib", |
| 10 | "frameworks/av/media/libeffects/lvm/lib/Bass/src", |
| 11 | "frameworks/av/media/libeffects/lvm/lib/Bundle/src", |
| 12 | "frameworks/av/media/libeffects/lvm/lib/Common/src", |
| 13 | "frameworks/av/media/libeffects/lvm/lib/Eq/lib", |
| 14 | "frameworks/av/media/libeffects/lvm/lib/Eq/src", |
| 15 | "frameworks/av/media/libeffects/lvm/lib/SpectrumAnalyzer/lib", |
| 16 | "frameworks/av/media/libeffects/lvm/lib/SpectrumAnalyzer/src", |
| 17 | "frameworks/av/media/libeffects/lvm/lib/StereoWidening/lib", |
| 18 | "frameworks/av/media/libeffects/lvm/lib/StereoWidening/src", |
| 19 | "frameworks/av/media/libeffects/lvm/wrapper/Bundle", |
| 20 | ], |
| 21 | |
| 22 | header_libs: [ |
| 23 | "libaudioeffects", |
| 24 | ], |
| 25 | |
| 26 | shared_libs: [ |
| 27 | "libaudioutils", |
| 28 | "liblog", |
| 29 | ], |
| 30 | |
| 31 | static_libs: [ |
| 32 | "libmusicbundle", |
| 33 | ], |
| 34 | |
| 35 | srcs: ["lvmtest.cpp"], |
| 36 | |
| 37 | cflags: [ |
Saketh Sathuvalli | b99e1bc | 2018-02-21 17:10:34 +0530 | [diff] [blame] | 38 | "-DSUPPORT_MC", |
| 39 | |
| 40 | "-Wall", |
| 41 | "-Werror", |
| 42 | "-Wextra", |
| 43 | ], |
| 44 | } |
Saketh Sathuvalli | b89991f | 2019-01-10 19:26:43 +0530 | [diff] [blame] | 45 | |
| 46 | cc_test { |
| 47 | name: "snr", |
| 48 | host_supported: false, |
| 49 | |
| 50 | srcs: ["snr.cpp"], |
| 51 | |
| 52 | cflags: [ |
| 53 | "-Wall", |
| 54 | "-Werror", |
| 55 | "-Wextra", |
| 56 | ], |
| 57 | } |