blob: 0f9b71b2024918b4bbe63a665b3af112c814d29a [file] [log] [blame]
kumarashishg826308d2023-06-23 13:21:22 +00001# Copyright 2018 The PDFium Authors
Haibo Huang49cc9302020-04-27 16:14:24 -07002# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5import("../../pdfium.gni")
6
7source_set("image_diff") {
8 testonly = true
9 sources = [
10 "image_diff_png.cpp",
11 "image_diff_png.h",
12 ]
kumarashishg826308d2023-06-23 13:21:22 +000013 configs += [
14 "../../:pdfium_strict_config",
15 "../../:pdfium_noshorten_config",
16 ]
Haibo Huang49cc9302020-04-27 16:14:24 -070017 deps = [
18 "../../third_party:pdfium_base",
19 "../../third_party:png",
20 "../../third_party:zlib",
21 ]
22}