1load("//bazel:skia_rules.bzl", "skia_filegroup") 2 3package( 4 default_applicable_licenses = ["//:license"], 5) 6 7licenses(["notice"]) 8 9skia_filegroup( 10 name = "public_hdrs", 11 srcs = [ 12 "GrBackendDrawableInfo.h", 13 "GrVkBackendSemaphore.h", 14 "GrVkBackendSurface.h", 15 "GrVkDirectContext.h", 16 "GrVkTypes.h", 17 ], 18 visibility = [ 19 "//include/gpu/ganesh:__pkg__", 20 "//src/gpu/ganesh/vk:__pkg__", 21 ], 22) 23