blob: ea3dd9d76bf202edc5ce7b99774f531baa16646e [file] [log] [blame]
Snehal N Bhamaree0fbe902020-05-14 08:59:28 +05301cc_test {
2 name: "VorbisDecoderTest",
3 gtest: true,
4 test_suites: ["device-tests"],
5
6 srcs: [
7 "VorbisDecoderTest.cpp",
8 ],
9
10 shared_libs: [
11 "libutils",
12 "liblog",
13 ],
14
15 static_libs: [
16 "libvorbisidec",
17 ],
18
19 cflags: [
20 "-Werror",
21 "-Wall",
22 ],
23
24 sanitize: {
25 misc_undefined: [
26 "unsigned-integer-overflow",
27 "signed-integer-overflow",
28 ],
29 cfi: true,
30 },
31}