c6142d855c
Turns out lots of tools had two copies of many of these flags. Some GN and .cpp file refactoring to make sure when flags are present in a binary, they do something in that binary. I think this finally finishes the flag refrag. Change-Id: I01488e37ab73a5c4361786863ddb137a7f1095b1 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/203420 Commit-Queue: Mike Klein <mtklein@google.com> Commit-Queue: Brian Osman <brianosman@google.com> Auto-Submit: Mike Klein <mtklein@google.com> Reviewed-by: Brian Osman <brianosman@google.com>
17 lines
374 B
C++
17 lines
374 B
C++
/*
|
|
* Copyright 2018 Google, LLC
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include "../Fuzz.h"
|
|
|
|
void fuzz_Gradients(Fuzz* f);
|
|
|
|
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
|
|
auto fuzz = Fuzz(SkData::MakeWithoutCopy(data, size));
|
|
fuzz_Gradients(&fuzz);
|
|
return 0;
|
|
}
|