21 lines
499 B
Python
21 lines
499 B
Python
load("//bazel:skia_rules.bzl", "exports_files_legacy", "skia_cc_library")
|
|
|
|
licenses(["notice"])
|
|
|
|
exports_files_legacy()
|
|
|
|
skia_cc_library(
|
|
name = "vulkan",
|
|
hdrs = [
|
|
"vulkan/vulkan.h",
|
|
"vulkan/vulkan_core.h",
|
|
],
|
|
includes = ["."],
|
|
textual_hdrs = [
|
|
"vulkan/vk_platform.h",
|
|
"vulkan/vulkan_android.h",
|
|
"vulkan/vulkan_xcb.h",
|
|
], #TODO(kjlubick) The other files are necessary on different platforms
|
|
visibility = ["//:__subpackages__"],
|
|
)
|