f4d0c2c9c8
It's time to better organize //third_party/BUILD.bazel This CL starts by moving the "third party" stuff we closely own. Change-Id: I3e0be0044b790794e94f34af6202860ce0a7b7aa Bug: skia:12541 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/531999 Reviewed-by: Ben Wagner <bungeman@google.com>
17 lines
486 B
Python
17 lines
486 B
Python
licenses(["notice"])
|
|
|
|
cc_library(
|
|
name = "skias_vulkan_headers",
|
|
hdrs = [
|
|
"//include/third_party/vulkan/vulkan:vk_platform.h",
|
|
"//include/third_party/vulkan/vulkan:vulkan_core.h",
|
|
],
|
|
# many places include the vulkan headers as <vulkan/vulkan.h> so we
|
|
# want to add this directory to the include search path
|
|
includes = ["."],
|
|
visibility = ["//:__subpackages__"],
|
|
deps = [
|
|
"//include/third_party/vulkan/vulkan:vulkan_hdr",
|
|
],
|
|
)
|