• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1load("//bazel:skia_rules.bzl", "skia_cc_library")
2
3package(
4    default_applicable_licenses = ["//:license"],
5)
6
7licenses(["notice"])
8
9skia_cc_library(
10    name = "graphite_utils",
11    testonly = True,
12    srcs = [
13        "ContextFactory.cpp",
14        "ContextFactory.h",
15        "GraphiteTestContext.cpp",
16        "GraphiteTestContext.h",
17        "GraphiteToolUtils.cpp",
18        "ProtectedUtils_Graphite.cpp",
19        "TestOptions.h",
20        "UniqueKeyUtils.cpp",
21        "UniqueKeyUtils.h",
22    ],
23    hdrs = [
24        "ContextFactory.h",
25        "GraphiteToolUtils.h",
26        "TestOptions.h",
27    ],
28    visibility = [
29        "//bench:__subpackages__",
30        "//dm:__pkg__",
31        "//modules/skottie:__pkg__",
32        "//tools:__subpackages__",
33    ],
34    deps = [
35        "//:core",
36        "//src/base",
37        "//src/core:core_priv",
38        "//src/gpu/graphite:graphite_TEST_UTIL",
39        "//tools/gpu:shared_utils",
40    ],
41)
42