aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Lozano <ivanlozano@google.com>2019-03-12 13:53:42 -0700
committerIvan Lozano <ivanlozano@google.com>2019-03-12 13:53:42 -0700
commitd03fa44a8b3a0e94ec336c73025914eb515c9265 (patch)
treece202cbbfd6f17de3df40daa0951cbb6e073128a
parent1b98760172fe81ea138edc922a9bacfd1233f36a (diff)
downloadlibogg-d03fa44a8b3a0e94ec336c73025914eb515c9265.tar.gz
Sanitization is silently skipped for NDK libraries such as libogg. Comment out these parts of our blueprint file to ensure there isn't any confusion about whether this is being sanitized until we can address this behavior in the build system. Bug: 124978545 Test: mma -j Change-Id: I13ae29230785fd6f9a7b9876c43e656dcd515429
-rw-r--r--Android.bp9
1 files changed, 5 insertions, 4 deletions
diff --git a/Android.bp b/Android.bp
index 1d30052..dcb52d4 100644
--- a/Android.bp
+++ b/Android.bp
@@ -11,8 +11,9 @@ cc_library_static {
export_include_dirs: ["include"],
sdk_version: "14",
- sanitize: {
- integer_overflow: true,
- misc_undefined: ["bounds"],
- },
+ // TODO(ivanlozano) b/124978545
+ // sanitize: {
+ // integer_overflow: true,
+ // misc_undefined: ["bounds"],
+ // },
}