1load("//bazel:skia_rules.bzl", "exports_files_legacy", "skia_filegroup") 2 3package( 4 default_applicable_licenses = ["//:license"], 5) 6 7licenses(["notice"]) 8 9exports_files_legacy() 10 11skia_filegroup( 12 name = "public_hdrs", 13 srcs = [ 14 "GrGLBackendSurface.h", 15 "GrGLDirectContext.h", 16 ], 17 visibility = [ 18 "//include/gpu/ganesh:__pkg__", 19 "//src/gpu/ganesh/gl:__pkg__", 20 ], 21) 22 23skia_filegroup( 24 name = "webgl_hdrs", 25 srcs = [ 26 "GrGLMakeWebGLInterface.h", 27 ], 28 visibility = [ 29 "//src/gpu/ganesh/gl/webgl:__pkg__", 30 ], 31) 32