Turn off LTO for libopenjdkjvmti

Global ThinLTO was enabled by default and this broke some of
the ART tests e.g.
https://ci.chromium.org/ui/p/art/builders/ci/angler-armv7-non-gen-cc/3094/overview.

We can work around it by disabling it for some of our code.

Bug: 169004486
Bug: 291054002
Test: chroot +
  art/test/testrunner/testrunner.py --target --64 --optimizing -t 999
Change-Id: Ieab927ba87c905ad8e1b75b03847133c274971e9
diff --git a/openjdkjvmti/Android.bp b/openjdkjvmti/Android.bp
index 98cb466..87dd681 100644
--- a/openjdkjvmti/Android.bp
+++ b/openjdkjvmti/Android.bp
@@ -103,6 +103,10 @@
     shared_libs: [
         "libbase",
     ],
+    lto: {
+        // TODO(yikong): Workaround LTO breakage.
+        never: true,
+    },
 }
 
 art_cc_library {