aboutsummaryrefslogtreecommitdiff
path: root/tests/Android.bp
blob: ea3dd9d76bf202edc5ce7b99774f531baa16646e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
cc_test {
    name: "VorbisDecoderTest",
    gtest: true,
    test_suites: ["device-tests"],

    srcs: [
        "VorbisDecoderTest.cpp",
    ],

    shared_libs: [
        "libutils",
        "liblog",
    ],

    static_libs: [
        "libvorbisidec",
    ],

    cflags: [
        "-Werror",
        "-Wall",
    ],

    sanitize: {
        misc_undefined: [
            "unsigned-integer-overflow",
            "signed-integer-overflow",
        ],
        cfi: true,
    },
}