aboutsummaryrefslogtreecommitdiff
path: root/Android.bp
diff options
context:
space:
mode:
authorIvan Lozano <ivanlozano@google.com>2018-10-04 14:53:48 -0700
committerIvan Lozano <ivanlozano@google.com>2018-10-04 14:53:48 -0700
commit976f99b46ec7dca329ba7dd45885b74a5c8c7d58 (patch)
tree2825d6da6099da4cec52e786928c91372643cdc0 /Android.bp
parent86485d9cbaea0ac18ae770ceb29a344db9dc625a (diff)
downloadlibopus-976f99b46ec7dca329ba7dd45885b74a5c8c7d58.tar.gz
Enable bounds sanitization in libopus.
Enables bounds sanitization in libopus, initially with diagnostics. Bug: 117221610 Test: Device boots Change-Id: If9015554be566f8206f392e9ac591a63077fb97a
Diffstat (limited to 'Android.bp')
-rw-r--r--Android.bp2
1 files changed, 2 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index b66450b9..406dc244 100644
--- a/Android.bp
+++ b/Android.bp
@@ -16,8 +16,10 @@ cc_library_shared {
sanitize: {
integer_overflow: true,
+ misc_undefined: ["bounds"],
diag: {
integer_overflow: true,
+ misc_undefined: ["bounds"],
},
blacklist: "libopus_blacklist.txt",
},