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 "BackendSemaphore.h", 13 "BackendTexture.h", 14 "Context.h", 15 "ContextOptions.h", 16 "GraphiteTypes.h", 17 "Image.h", 18 "ImageProvider.h", 19 "LogPriority.h", 20 "PrecompileContext.h", 21 "Recorder.h", 22 "Recording.h", 23 "Surface.h", 24 "TextureInfo.h", 25 "YUVABackendTextures.h", 26 ], 27 visibility = ["//src/gpu/graphite:__subpackages__"], 28) 29