Update omitted Bazel tests.

Match based on the whole test name.

No-Try: true
Change-Id: I03c180195f5854f30e521e2772dcb7e44f1cc3b8
Reviewed-on: https://skia-review.googlesource.com/46000
Commit-Queue: Mike Klein <mtklein@google.com>
Reviewed-by: Mike Klein <mtklein@google.com>
diff --git a/public.bzl b/public.bzl
index c7e47d5..e832550 100644
--- a/public.bzl
+++ b/public.bzl
@@ -574,37 +574,28 @@
   config = ["565", "8888", "pdf", "srgb"]
   # TODO(mtklein): maybe investigate why these fail?
   match = [
-      "~Canvas",
-      "~Codec",
-      "~Codec_Dimensions",
-      "~Codec_stripes",
-      "~FontMgr",
-      "~PaintBreakText",
-      "~RecordDraw_TextBounds",
-      "~Scalar",
-      "~skps",
-      "~Stream",
+      "~^FontHostStream$$",
+      "~^FontMgr$$",
+      "~^PaintBreakText$$",
+      "~^RecordDraw_TextBounds$$",
   ]
   if asan:
     # The ASAN we use with Bazel has some strict checks, so omit tests that
     # trigger them.
     match += [
-        "~bigrect",
-        "~clippedcubic2",
-        "~conicpaths",
-        "~^gradients",
-        "~Math",
-        "~Matrix",
-        "~PathBigCubic",
-        "~PathOpsCubic",
-        "~PathOpsFailOp",
-        "~PathOpsOpCubicsThreaded",
-        "~PathOpsOpLoopsThreaded",
-        "~PathOpsSimplify",
-        "~PathOpsTightBoundsQuads",
-        "~Point",
-        "~sk_linear_to_srgb",
-        "~small_color_stop",
+        "~^bigrect$$",
+        "~^clippedcubic2$$",
+        "~^conicpaths$$",
+        "~^DashPathEffectTest_asPoints_limit$$",
+        "~^Matrix$$",
+        "~^Matrix44$$",
+        "~^PathBigCubic$$",
+        "~^PathOpsCubicIntersection$$",
+        "~^PathOpsCubicLineIntersection$$",
+        "~^PathOpsFailOp$$",
+        "~^PathOpsOpCubicsThreaded$$",
+        "~^PathOpsOpLoopsThreaded$$",
+        "~^Point$$",
     ]
   return ["--src"] + source + ["--config"] + config + ["--match"] + match