1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
load("//bazel:macros.bzl", "generated_cc_atom")
generated_cc_atom(
name = "GrVkBackendContext_hdr",
hdrs = ["GrVkBackendContext.h"],
visibility = ["//:__subpackages__"],
deps = [
":GrVkMemoryAllocator_hdr",
":GrVkTypes_hdr",
"//include/core:SkRefCnt_hdr",
],
)
generated_cc_atom(
name = "GrVkExtensions_hdr",
hdrs = ["GrVkExtensions.h"],
visibility = ["//:__subpackages__"],
deps = [
":GrVkTypes_hdr",
"//include/core:SkString_hdr",
"//include/private:SkTArray_hdr",
],
)
generated_cc_atom(
name = "GrVkMemoryAllocator_hdr",
hdrs = ["GrVkMemoryAllocator.h"],
visibility = ["//:__subpackages__"],
deps = [
":GrVkTypes_hdr",
"//include/core:SkRefCnt_hdr",
"//include/gpu:GrTypes_hdr",
],
)
generated_cc_atom(
name = "GrVkTypes_hdr",
hdrs = ["GrVkTypes.h"],
visibility = ["//:__subpackages__"],
deps = [
":GrVkVulkan_hdr",
"//include/core:SkTypes_hdr",
"//include/gpu:GrTypes_hdr",
],
)
generated_cc_atom(
name = "GrVkVulkan_hdr",
hdrs = ["GrVkVulkan.h"],
visibility = ["//:__subpackages__"],
deps = [
"//include/core:SkTypes_hdr",
"//include/third_party/vulkan/vulkan:vulkan_android_hdr",
"//include/third_party/vulkan/vulkan:vulkan_core_hdr",
],
)
|