diff options
author | 2022-04-03 16:34:10 -0700 | |
---|---|---|
committer | 2022-04-03 16:34:10 -0700 | |
commit | a87508008dfa1604baf2d4e39bf44704c00f261c (patch) | |
tree | 0be2ade96772037a02803b30e157c367d931e3d9 /src/deps/skia/include/docs/BUILD.bazel | |
parent | 4a19a3f07f1887903e5638a3be167f0c7b377ba3 (diff) | |
download | bun-a87508008dfa1604baf2d4e39bf44704c00f261c.tar.gz bun-a87508008dfa1604baf2d4e39bf44704c00f261c.tar.zst bun-a87508008dfa1604baf2d4e39bf44704c00f261c.zip |
skia WIPjarred/canvas
Diffstat (limited to 'src/deps/skia/include/docs/BUILD.bazel')
-rw-r--r-- | src/deps/skia/include/docs/BUILD.bazel | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/deps/skia/include/docs/BUILD.bazel b/src/deps/skia/include/docs/BUILD.bazel new file mode 100644 index 000000000..c59bf7cae --- /dev/null +++ b/src/deps/skia/include/docs/BUILD.bazel @@ -0,0 +1,26 @@ +load("//bazel:macros.bzl", "generated_cc_atom") + +generated_cc_atom( + name = "SkPDFDocument_hdr", + hdrs = ["SkPDFDocument.h"], + visibility = ["//:__subpackages__"], + deps = [ + "//include/core:SkColor_hdr", + "//include/core:SkDocument_hdr", + "//include/core:SkMilestone_hdr", + "//include/core:SkScalar_hdr", + "//include/core:SkString_hdr", + "//include/core:SkTime_hdr", + "//include/private:SkNoncopyable_hdr", + ], +) + +generated_cc_atom( + name = "SkXPSDocument_hdr", + hdrs = ["SkXPSDocument.h"], + visibility = ["//:__subpackages__"], + deps = [ + "//include/core:SkDocument_hdr", + "//include/core:SkTypes_hdr", + ], +) |