cc_test { | |
name: "VorbisDecoderTest", | |
gtest: true, | |
test_suites: ["device-tests"], | |
srcs: [ | |
"VorbisDecoderTest.cpp", | |
], | |
shared_libs: [ | |
"libutils", | |
"liblog", | |
], | |
static_libs: [ | |
"libvorbisidec", | |
], | |
cflags: [ | |
"-Werror", | |
"-Wall", | |
], | |
// Assembly is only written for ARM and cannot interop with Thumb. | |
arch: { | |
arm: { | |
instruction_set: "arm", | |
}, | |
}, | |
sanitize: { | |
misc_undefined: [ | |
"unsigned-integer-overflow", | |
"signed-integer-overflow", | |
], | |
cfi: true, | |
}, | |
} |