blob: c355295c0970af4041ec1e4b7f18d39966ae3f11 [file] [log] [blame]
load("//bazel:macros.bzl", "cc_library", "exports_files_legacy")
licenses(["notice"])
exports_files_legacy()
cc_library(
name = "testutils",
testonly = True,
srcs = [
"GrVulkanDefines.h",
"VkTestUtils.cpp",
],
hdrs = ["VkTestUtils.h"],
visibility = [
"//example:__subpackages__",
"//tools:__subpackages__",
],
deps = [
"//:skia_internal",
"//include/third_party/vulkan",
],
)