blob: 0aa738e43b42f1df4eb560c567e4ad82ee78e395 [file] [log] [blame]
load("//bazel:skia_rules.bzl", "exports_files_legacy", "skia_cc_library", "skia_filegroup")
licenses(["notice"])
exports_files_legacy()
skia_cc_library(
name = "testutils",
srcs = [
"GrVulkanDefines.h",
"VkTestUtils.cpp",
],
hdrs = ["VkTestUtils.h"],
visibility = [
"//example:__subpackages__",
"//tools:__subpackages__",
],
deps = [
"//:skia_internal",
"//include/third_party/vulkan",
],
)
skia_filegroup(
name = "private_hdrs",
srcs = [
"GrVulkanDefines.h",
"VkTestContext.h",
"VkTestHelper.h",
"VkTestUtils.h",
"VkYcbcrSamplerHelper.h",
],
visibility = ["//tools/gpu:__pkg__"],
)
skia_filegroup(
name = "srcs",
srcs = [
"VkTestContext.cpp",
"VkTestHelper.cpp",
"VkTestUtils.cpp",
"VkYcbcrSamplerHelper.cpp",
],
visibility = ["//tools/gpu:__pkg__"],
)