diff options
author | Ben Wagner <bungeman@google.com> | 2018-03-07 10:36:27 -0500 |
---|---|---|
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2018-03-07 15:57:40 +0000 |
commit | aa567aba513cbab618c4433372ae6eb5d11e527b (patch) | |
tree | 851e83d7dd549178fea028fa702389c54d149717 | |
parent | 3a4bd34478826c0457a36a8755791faf36a44e5e (diff) |
Remove dm excludes from public.bzl.
Several text tests are excluded from dm, presumably because previously
there were no fonts. Now that there are, these tests pass.
Change-Id: I5cb30cc5658ab77294ac4479902c932ddf490289
Reviewed-on: https://skia-review.googlesource.com/112721
Reviewed-by: Mike Klein <mtklein@google.com>
Commit-Queue: Ben Wagner <bungeman@google.com>
-rw-r--r-- | public.bzl | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/public.bzl b/public.bzl index 5ae13ac27f..fbd005bf0f 100644 --- a/public.bzl +++ b/public.bzl @@ -545,14 +545,7 @@ def DM_ARGS(asan): source = ["tests", "gm", "image"] # TODO(benjaminwagner): f16, pic-8888, serialize-8888, and tiles_rt-8888 fail. config = ["565", "8888", "pdf", "srgb"] - # TODO(mtklein): maybe investigate why these fail? - match = [ - "~^FontHostStream$$", - "~^FontMgr$$", - "~^PaintBreakText$$", - "~^RecordDraw_TextBounds$$", - ] - return ["--src"] + source + ["--config"] + config + ["--match"] + match + ["--nonativeFonts"] + return ["--src"] + source + ["--config"] + config + ["--nonativeFonts"] ################################################################################ ## COPTS |