aboutsummaryrefslogtreecommitdiffhomepage
path: root/public.bzl
diff options
context:
space:
mode:
Diffstat (limited to 'public.bzl')
-rw-r--r--public.bzl10
1 files changed, 2 insertions, 8 deletions
diff --git a/public.bzl b/public.bzl
index 628301d3d9..b07f2d8875 100644
--- a/public.bzl
+++ b/public.bzl
@@ -540,20 +540,14 @@ def DM_ARGS(asan):
if asan:
# The ASAN we use with Bazel has some strict checks, so omit tests that
# trigger them.
+ # All of the following are due to
+ # https://bugs.chromium.org/p/skia/issues/detail?id=7052
match += [
- "~^bigrect$$",
"~^clippedcubic2$$",
- "~^conicpaths$$",
- "~^DashPathEffectTest_asPoints_limit$$",
- "~^Matrix$$",
- "~^Matrix44$$",
- "~^PathBigCubic$$",
"~^PathOpsCubicIntersection$$",
"~^PathOpsCubicLineIntersection$$",
- "~^PathOpsFailOp$$",
"~^PathOpsOpCubicsThreaded$$",
"~^PathOpsOpLoopsThreaded$$",
- "~^Point$$",
]
return ["--src"] + source + ["--config"] + config + ["--match"] + match