• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1load("//bazel:macros.bzl", "generated_cc_atom")
2
3generated_cc_atom(
4    name = "DawnTestContext_hdr",
5    hdrs = ["DawnTestContext.h"],
6    visibility = ["//:__subpackages__"],
7    deps = ["//tools/gpu:TestContext_hdr"],
8)
9
10generated_cc_atom(
11    name = "DawnTestContext_src",
12    srcs = ["DawnTestContext.cpp"],
13    visibility = ["//:__subpackages__"],
14    deps = [
15        ":DawnTestContext_hdr",
16        "//GL:glx_hdr",
17        "//dawn:dawn_proc_hdr",
18        "//dawn:webgpu_hdr",
19        "//dawn_native:OpenGLBackend_hdr",
20        "//include/gpu:GrDirectContext_hdr",
21        "//tools:AutoreleasePool_hdr",
22    ],
23)
24