• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1load("//bazel:macros.bzl", "generated_cc_atom")
2
3generated_cc_atom(
4    name = "ANGLEWindowContext_win_src",
5    srcs = ["ANGLEWindowContext_win.cpp"],
6    visibility = ["//:__subpackages__"],
7    deps = [
8        ":WindowContextFactory_win_hdr",
9        "//include/gpu/gl:GrGLAssembleInterface_hdr",
10        "//src/gpu/gl:GrGLDefines_hdr",
11        "//tools/sk_app:GLWindowContext_hdr",
12    ],
13)
14
15generated_cc_atom(
16    name = "D3D12WindowContext_win_src",
17    srcs = ["D3D12WindowContext_win.cpp"],
18    visibility = ["//:__subpackages__"],
19    deps = [
20        ":WindowContextFactory_win_hdr",
21        "//include/core:SkSurface_hdr",
22        "//include/gpu:GrDirectContext_hdr",
23        "//include/gpu/d3d:GrD3DBackendContext_hdr",
24        "//tools/gpu/d3d:D3DTestUtils_hdr",
25        "//tools/sk_app:WindowContext_hdr",
26    ],
27)
28
29generated_cc_atom(
30    name = "DawnD3D12WindowContext_win_src",
31    srcs = ["DawnD3D12WindowContext_win.cpp"],
32    visibility = ["//:__subpackages__"],
33    deps = [
34        ":WindowContextFactory_win_hdr",
35        "//dawn:dawn_wsi_hdr",
36        "//dawn_native:D3D12Backend_hdr",
37        "//dawn_native:DawnNative_hdr",
38        "//tools/sk_app:DawnWindowContext_hdr",
39    ],
40)
41
42generated_cc_atom(
43    name = "GLWindowContext_win_src",
44    srcs = ["GLWindowContext_win.cpp"],
45    visibility = ["//:__subpackages__"],
46    deps = [
47        ":WindowContextFactory_win_hdr",
48        "//include/gpu/gl:GrGLInterface_hdr",
49        "//src/utils/win:SkWGL_hdr",
50        "//tools/sk_app:GLWindowContext_hdr",
51    ],
52)
53
54generated_cc_atom(
55    name = "RasterWindowContext_win_src",
56    srcs = ["RasterWindowContext_win.cpp"],
57    visibility = ["//:__subpackages__"],
58    deps = [
59        ":WindowContextFactory_win_hdr",
60        "//include/core:SkSurface_hdr",
61        "//src/core:SkAutoMalloc_hdr",
62        "//tools/sk_app:RasterWindowContext_hdr",
63    ],
64)
65
66generated_cc_atom(
67    name = "VulkanWindowContext_win_src",
68    srcs = ["VulkanWindowContext_win.cpp"],
69    visibility = ["//:__subpackages__"],
70    deps = [
71        ":WindowContextFactory_win_hdr",
72        ":Window_win_hdr",
73        "//include/gpu/vk:GrVkVulkan_hdr",
74        "//src/gpu/vk:GrVkInterface_hdr",
75        "//src/gpu/vk:GrVkUtil_hdr",
76        "//tools/gpu/vk:VkTestUtils_hdr",
77        "//tools/sk_app:VulkanWindowContext_hdr",
78    ],
79)
80
81generated_cc_atom(
82    name = "WindowContextFactory_win_hdr",
83    hdrs = ["WindowContextFactory_win.h"],
84    visibility = ["//:__subpackages__"],
85)
86
87generated_cc_atom(
88    name = "Window_win_hdr",
89    hdrs = ["Window_win.h"],
90    visibility = ["//:__subpackages__"],
91    deps = ["//tools/sk_app:Window_hdr"],
92)
93
94generated_cc_atom(
95    name = "Window_win_src",
96    srcs = ["Window_win.cpp"],
97    visibility = ["//:__subpackages__"],
98    deps = [
99        ":WindowContextFactory_win_hdr",
100        ":Window_win_hdr",
101        "//include/gpu/vk:GrVkVulkan_hdr",
102        "//src/utils:SkUTF_hdr",
103        "//tools/sk_app:VulkanWindowContext_hdr",
104        "//tools/sk_app:WindowContext_hdr",
105        "//tools/skui:ModifierKey_hdr",
106    ],
107)
108
109generated_cc_atom(
110    name = "main_win_src",
111    srcs = ["main_win.cpp"],
112    visibility = ["//:__subpackages__"],
113    deps = [
114        ":Window_win_hdr",
115        "//include/core:SkTypes_hdr",
116        "//tools/sk_app:Application_hdr",
117        "//tools/timer:Timer_hdr",
118    ],
119)
120