Don't explicitly enable CFI in libFraunhoferAAC

Since libFraunhoferAAC is a static library, both CFI and non-CFI variants will
be built and linked accordingly.

If it is used as a shared library in the future, we'll need to
explicitly re-enable CFI in the build file.
Bug: 117994055

Change-Id: I825c53b5f895e00c1fb9357c573b6b5c2261c743
This commit is contained in:
Harish Mahendrakar 2019-01-09 14:01:08 -08:00 committed by Wonsik Kim
parent 2a2c62fbed
commit 6a39cdb6ee
1 changed files with 2 additions and 1 deletions

View File

@ -30,7 +30,8 @@ cc_library_static {
"signed-integer-overflow",
"bounds",
],
cfi: true,
// Enable CFI if this becomes a shared library.
// cfi: true,
},
shared_libs: [
"liblog",