| Index: skia/BUILD.gn
|
| diff --git a/skia/BUILD.gn b/skia/BUILD.gn
|
| index de57eb8007ddb2114fe78fd2de0912106538563d..e2223470e43ef1b65b41a540f9439ce5be0e19fb 100644
|
| --- a/skia/BUILD.gn
|
| +++ b/skia/BUILD.gn
|
| @@ -631,3 +631,28 @@ test("skia_unittests") {
|
| "//ui/gfx/geometry",
|
| ]
|
| }
|
| +
|
| +if (is_linux && !is_chromeos) {
|
| + # TODO(GYP): Figure out which of these work and are needed on other platforms.
|
| + executable("image_operations_bench") {
|
| + sources = [
|
| + "ext/image_operations_bench.cc",
|
| + ]
|
| +
|
| + deps = [
|
| + ":skia",
|
| + "//base",
|
| + ]
|
| + }
|
| +
|
| + executable("filter_fuzz_stub") {
|
| + sources = [
|
| + "tools/filter_fuzz_stub/filter_fuzz_stub.cc",
|
| + ]
|
| +
|
| + deps = [
|
| + ":skia",
|
| + "//base",
|
| + ]
|
| + }
|
| +}
|
|
|