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 "GrGLAssembleHelpers.h", 13 "GrGLAssembleInterface.h", 14 "GrGLBackendSurface.h", 15 "GrGLConfig.h", 16 "GrGLDirectContext.h", 17 "GrGLExtensions.h", 18 "GrGLFunctions.h", 19 "GrGLInterface.h", 20 "GrGLTypes.h", 21 ], 22 visibility = [ 23 "//src/gpu/ganesh/gl:__pkg__", 24 ], 25) 26 27skia_filegroup( 28 name = "webgl_hdrs", 29 srcs = [ 30 "GrGLMakeWebGLInterface.h", 31 ], 32 visibility = [ 33 "//src/gpu/ganesh/gl/webgl:__pkg__", 34 ], 35) 36