• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1load("//bazel:macros.bzl", "generated_cc_atom")
2
3generated_cc_atom(
4    name = "GLTestContext_hdr",
5    hdrs = ["GLTestContext.h"],
6    visibility = ["//:__subpackages__"],
7    deps = [
8        "//include/gpu/gl:GrGLInterface_hdr",
9        "//src/gpu/gl:GrGLUtil_hdr",
10        "//tools/gpu:TestContext_hdr",
11    ],
12)
13
14generated_cc_atom(
15    name = "GLTestContext_src",
16    srcs = ["GLTestContext.cpp"],
17    visibility = ["//:__subpackages__"],
18    deps = [
19        ":GLTestContext_hdr",
20        "//include/gpu:GrDirectContext_hdr",
21        "//src/gpu/gl:GrGLUtil_hdr",
22        "//tools/gpu:GpuTimer_hdr",
23    ],
24)
25