skia2/include/gpu/graphite/BUILD.bazel
Jim Van Verth ae5e846047 [graphite] Move Graphite into Skia base directories.
Change-Id: Ie0fb74f3766a8b33387c145bd1151344c25808cb
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/528708
Reviewed-by: Kevin Lubick <kjlubick@google.com>
Reviewed-by: Greg Daniel <egdaniel@google.com>
Commit-Queue: Jim Van Verth <jvanverth@google.com>
2022-04-08 20:46:40 +00:00

75 lines
1.7 KiB
Python

load("//bazel:macros.bzl", "generated_cc_atom")
generated_cc_atom(
name = "BackendTexture_hdr",
hdrs = ["BackendTexture.h"],
visibility = ["//:__subpackages__"],
deps = [
":GraphiteTypes_hdr",
":TextureInfo_hdr",
"//include/core:SkSize_hdr",
"//include/gpu/graphite/mtl:MtlTypes_hdr",
],
)
generated_cc_atom(
name = "Context_hdr",
hdrs = ["Context.h"],
visibility = ["//:__subpackages__"],
deps = [
":GraphiteTypes_hdr",
"//include/core:SkBlendMode_hdr",
"//include/core:SkRefCnt_hdr",
"//include/core:SkShader_hdr",
"//include/core:SkTileMode_hdr",
"//include/private:SkNoncopyable_hdr",
],
)
generated_cc_atom(
name = "GraphiteTypes_hdr",
hdrs = ["GraphiteTypes.h"],
visibility = ["//:__subpackages__"],
deps = [
"//include/core:SkTypes_hdr",
"//include/gpu:GpuTypes_hdr",
],
)
generated_cc_atom(
name = "Recorder_hdr",
hdrs = ["Recorder.h"],
visibility = ["//:__subpackages__"],
deps = [
"//include/core:SkRefCnt_hdr",
"//include/private:SingleOwner_hdr",
],
)
generated_cc_atom(
name = "Recording_hdr",
hdrs = ["Recording.h"],
visibility = ["//:__subpackages__"],
deps = ["//include/core:SkRefCnt_hdr"],
)
generated_cc_atom(
name = "SkStuff_hdr",
hdrs = ["SkStuff.h"],
visibility = ["//:__subpackages__"],
deps = [
"//include/core:SkImageInfo_hdr",
"//include/core:SkRefCnt_hdr",
],
)
generated_cc_atom(
name = "TextureInfo_hdr",
hdrs = ["TextureInfo.h"],
visibility = ["//:__subpackages__"],
deps = [
":GraphiteTypes_hdr",
"//include/private/gpu/graphite:MtlTypesPriv_hdr",
],
)