DO NOT MERGE Add mini plans for auto-runs

Bug: 17577099
Change-Id: I0d344d1bec99818b0a8affd1f8a7d4ed0a4c36fe
diff --git a/tools/utils/buildCts.py b/tools/utils/buildCts.py
index f9228d7..c0fc85c 100755
--- a/tools/utils/buildCts.py
+++ b/tools/utils/buildCts.py
@@ -236,6 +236,23 @@
       plan.ExcludeTests(package, test_list)
     self.__WritePlan(plan, 'CTS-staging')
 
+    plan = tools.TestPlan(packages)
+    plan.Exclude('.*')
+    plan.Include(r'android\.core\.tests\.libcore\.')
+    plan.Include(r'android\.jdwp')
+    self.__WritePlan(plan, 'CTS-ART')
+
+    plan = tools.TestPlan(packages)
+    plan.Exclude('.*')
+    plan.Include(r'com\.drawelements\.')
+    self.__WritePlan(plan, 'CTS-DEQP')
+
+    plan = tools.TestPlan(packages)
+    plan.Exclude('.*')
+    plan.Include(r'android\.webgl')
+    self.__WritePlan(plan, 'CTS-webview')
+
+
 def BuildAospMediumSizeTestList():
   """ Construct a defaultdic that lists package names of medium tests
       already published to aosp. """