aboutsummaryrefslogtreecommitdiffhomepage
path: root/public.bzl
diff options
context:
space:
mode:
Diffstat (limited to 'public.bzl')
-rw-r--r--public.bzl43
1 files changed, 17 insertions, 26 deletions
diff --git a/public.bzl b/public.bzl
index c7e47d500f..e8325500a0 100644
--- a/public.bzl
+++ b/public.bzl
@@ -574,37 +574,28 @@ def DM_ARGS(asan):
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