aboutsummaryrefslogtreecommitdiff
path: root/system/embdrv/tests/Android.bp
blob: 4b57d769fc06141a106bb8a85acb9afcc45aadca (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
32
33
34
35
cc_test {
    name: "libaptx_enc_tests",
    defaults: [
        "mts_defaults",
    ],
    test_suites: ["device-tests"],
    host_supported: true,
    test_options: {
        unit_test: true,
    },
    srcs: [ "src/aptx.cc" ],
    whole_static_libs: [ "libaptx_enc" ],
    sanitize: {
        address: true,
        cfi: true,
    },
}

cc_test {
    name: "libaptxhd_enc_tests",
    defaults: [
        "mts_defaults",
    ],
    test_suites: ["device-tests"],
    host_supported: true,
    test_options: {
        unit_test: true,
    },
    srcs: [ "src/aptxhd.cc" ],
    whole_static_libs: [ "libaptxhd_enc" ],
    sanitize: {
        address: true,
        cfi: true,
    },
}