Comment out sanitization in libogg.

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
diff --git a/Android.bp b/Android.bp
index 1d30052..dcb52d4 100644
--- a/Android.bp
+++ b/Android.bp
@@ -11,8 +11,9 @@
     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"],
+    // },
 }