Chromium Code Reviews| Index: samples/BUILD.gn |
| diff --git a/samples/BUILD.gn b/samples/BUILD.gn |
| index e690c236221241a83b9af1d64b1313088fc71a06..7f2f41fa82d31388ca963a73514053361bc84ebd 100644 |
| --- a/samples/BUILD.gn |
| +++ b/samples/BUILD.gn |
| @@ -10,9 +10,21 @@ group("samples") { |
| executable("pdfium_test") { |
| sources = [ |
| + "image_diff_png.cc", |
| "pdfium_test.cc", |
| ] |
| deps = [ |
| "//third_party/pdfium", |
| ] |
| } |
| + |
| +executable("pdfium_diff") { |
| + sources = [ |
| + "image_diff.cc", |
| + "image_diff_png.cc", |
| + "image_diff_png.h", |
| + ] |
| + deps = [ |
| + "//third_party/pdfium", |
| + ] |
| +} |