diff options
author | kjlubick <kjlubick@google.com> | 2016-04-12 12:02:59 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-04-12 12:02:59 -0700 |
commit | 9fd07e5cc4d693b39397d00ae0a80f0cab420f7b (patch) | |
tree | 273e4b137ac0e4dfe810a2666b0960f4923fe49a /fuzz | |
parent | af9b8c804643952d5ff3deed62f1355319b72f72 (diff) |
Make fuzz builds set SK_FUZZ_LOGGING
BUG=skia:5191
GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1878363002
Review URL: https://codereview.chromium.org/1878363002
Diffstat (limited to 'fuzz')
-rw-r--r-- | fuzz/FilterFuzz.cpp | 2 | ||||
-rw-r--r-- | fuzz/fuzz.cpp | 4 |
2 files changed, 1 insertions, 5 deletions
diff --git a/fuzz/FilterFuzz.cpp b/fuzz/FilterFuzz.cpp index 7c233b80bf..791fe01a33 100644 --- a/fuzz/FilterFuzz.cpp +++ b/fuzz/FilterFuzz.cpp @@ -580,7 +580,7 @@ static sk_sp<SkImageFilter> make_image_filter(bool canBeNull) { break; case MAGNIFIER: filter = SkMagnifierImageFilter::Make(make_rect(), - make_scalar(true), + make_scalar(true), make_image_filter()); break; case DOWN_SAMPLE: diff --git a/fuzz/fuzz.cpp b/fuzz/fuzz.cpp index d35e7ae4d1..326b942bbe 100644 --- a/fuzz/fuzz.cpp +++ b/fuzz/fuzz.cpp @@ -10,7 +10,6 @@ #include "SkCodec.h" #include "SkCommandLineFlags.h" #include "SkData.h" -#include "SkForceLinking.h" #include "SkImage.h" #include "SkImageEncoder.h" #include "SkMallocPixelRef.h" @@ -21,9 +20,6 @@ #include <signal.h> #include <stdlib.h> -// TODO(kjlubick): Remove once http://crrev.com/1671193002 lands -__SK_FORCE_IMAGE_DECODER_LINKING; - DEFINE_string2(bytes, b, "", "A path to a file. This can be the fuzz bytes or a binary to parse."); DEFINE_string2(name, n, "", "If --type is 'api', fuzz the API with this name."); |