1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
load("//bazel:skia_rules.bzl", "skia_filegroup")
package(
default_applicable_licenses = ["//:license"],
)
licenses(["notice"])
skia_filegroup(
name = "public_hdrs",
srcs = [
"BackendSemaphore.h",
"BackendTexture.h",
"Context.h",
"ContextOptions.h",
"GraphiteTypes.h",
"Image.h",
"ImageProvider.h",
"LogPriority.h",
"PrecompileContext.h",
"Recorder.h",
"Recording.h",
"Surface.h",
"TextureInfo.h",
"YUVABackendTextures.h",
],
visibility = ["//src/gpu/graphite:__subpackages__"],
)
|