Only run internal bot with r8 lib

Change-Id: I32fd334f5cf57bf82518e92556040ae4f4476eba
diff --git a/tools/run_on_app.py b/tools/run_on_app.py
index a0542d4..c2b5004 100755
--- a/tools/run_on_app.py
+++ b/tools/run_on_app.py
@@ -227,7 +227,8 @@
     for version in data.VERSIONS:
       for type in data.VERSIONS[version]:
         if (app, version, type) not in DISABLED_PERMUTATIONS:
-          for use_r8lib in [False, True]:
+          # Only run with R8 lib to reduce cycle times.
+          for use_r8lib in [True]:
             yield app, version, type, use_r8lib
 
 def run_all(options, args):