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 29 30 31 32 33 34 35
|
load("//bazel:skia_rules.bzl", "generate_cpp_files_for_headers", "skia_filegroup")
package(
default_applicable_licenses = ["//:license"],
)
licenses(["notice"])
PUBLIC_HEADERS = [
"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",
]
skia_filegroup(
name = "public_hdrs",
srcs = PUBLIC_HEADERS,
visibility = ["//src/gpu/graphite:__subpackages__"],
)
generate_cpp_files_for_headers(
name = "headers_to_compile",
headers = PUBLIC_HEADERS,
)
|