run .skps on PDF bots

Change-Id: Icd1795a5b1aa59ffcaaa60e3d409ea8a3a0e36da
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/268644
Reviewed-by: Mike Reed <reed@google.com>
Commit-Queue: Mike Klein <mtklein@google.com>
diff --git a/infra/bots/recipes/test.expected/Test-Mac10.13-Clang-MacBookPro11.5-CPU-AVX2-x86_64-Debug-All-PDF.json b/infra/bots/recipes/test.expected/Test-Mac10.13-Clang-MacBookPro11.5-CPU-AVX2-x86_64-Debug-All-PDF.json
index fa55380..a12651d 100644
--- a/infra/bots/recipes/test.expected/Test-Mac10.13-Clang-MacBookPro11.5-CPU-AVX2-x86_64-Debug-All-PDF.json
+++ b/infra/bots/recipes/test.expected/Test-Mac10.13-Clang-MacBookPro11.5-CPU-AVX2-x86_64-Debug-All-PDF.json
@@ -281,6 +281,7 @@
       "pdf",
       "--src",
       "gm",
+      "skp",
       "--blacklist",
       "pdf",
       "gm",
diff --git a/infra/bots/recipes/test.py b/infra/bots/recipes/test.py
index b71df87..602621e 100644
--- a/infra/bots/recipes/test.py
+++ b/infra/bots/recipes/test.py
@@ -374,14 +374,14 @@
     if arg in args:
       args.remove(arg)
 
-  if 'DDL' in bot:
-    # The DDL bots just render the large skps and the gms
+  if 'DDL' in bot or 'PDF' in bot:
+    # The DDL and PDF bots just render the large skps and the gms
     remove_from_args('tests')
     remove_from_args('image')
     remove_from_args('colorImage')
     remove_from_args('svg')
   else:
-    # Currently, only the DDL bots render skps
+    # No other bots render the .skps.
     remove_from_args('skp')
 
   if 'Lottie' in api.vars.builder_cfg.get('extra_config', ''):
@@ -395,13 +395,6 @@
   else:
     remove_from_args('lottie')
 
-  if 'PDF' in bot:
-    # (Just GMs for now.)
-    remove_from_args('tests')
-    remove_from_args('image')
-    remove_from_args('colorImage')
-    remove_from_args('svg')
-
   # TODO: ???
   blacklist('f16 _ _ dstreadshuffle')
   blacklist('glsrgb image _ _')