• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package(
2    default_applicable_licenses = ["//:license"],
3)
4
5licenses(["notice"])
6
7cc_binary(
8    name = "skdiff",
9    testonly = True,
10    srcs = [
11        "skdiff.cpp",
12        "skdiff.h",
13        "skdiff_html.cpp",
14        "skdiff_html.h",
15        "skdiff_main.cpp",
16        "skdiff_utils.cpp",
17        "skdiff_utils.h",
18    ],
19    features = ["layering_check"],
20    deps = [
21        "//:core",
22        "//:png_decode_codec",
23        "//:png_encode_codec",
24        "//src/base",
25        "//src/core:core_priv",
26    ],
27)
28