36 lines
685 B
Plaintext
36 lines
685 B
Plaintext
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,
|
|
},
|
|
}
|