Compare commits

...

2 commits

Author SHA1 Message Date
Elliott Hughes
81d765231f Also ignore missing BTI for the examples, fuzzers, and tests.
Some checks are pending
CMake / build (push) Waiting to run
Change-Id: Ic4e60685efde008d04e0c070d35bc207564c9fcb
2026-04-01 16:26:38 -07:00
Elliott Hughes
dd26705c3e libavc: ignore BTI for now.
The assembler in this project needs updating, but we want to enable the
bti-report=error flag globally.

Change-Id: Ia67dd7bfc9adce5a434f45a783ffbc109dfb4dd4
2026-04-01 16:26:38 -07:00
4 changed files with 16 additions and 1 deletions

View file

@ -288,7 +288,10 @@ cc_library_static {
cc_library_static {
name: "libavcdec",
defaults: ["libavc_dec_defaults"],
defaults: [
"libavc_dec_defaults",
"no_bti",
],
export_include_dirs: [
"common",

View file

@ -9,6 +9,9 @@ package {
cc_defaults {
name: "avcdec_defaults",
defaults: [
"no_bti",
],
gtest: false,
host_supported: true,
cflags: [
@ -29,6 +32,9 @@ cc_defaults {
cc_defaults {
name: "avcenc_defaults",
defaults: [
"no_bti",
],
gtest: false,
host_supported: true,
cflags: [

View file

@ -9,6 +9,9 @@ package {
cc_defaults {
name: "libavc_fuzzer_defaults",
defaults: [
"no_bti",
],
host_supported: true,
static_libs: ["liblog"],
target: {

View file

@ -25,6 +25,9 @@ package {
cc_test {
name: "AvcEncTest",
defaults: [
"no_bti",
],
gtest: true,
test_suites: ["device-tests"],