skia2/modules/skparagraph/bench/BUILD.bazel
Kevin Lubick 83cee23c98 [bazel] Run buildifier on BUILD.bazel files
buildifier --lint=fix -r .

Change-Id: I6a41858270d20137978f8271c8f6160b51120777
Bug: skia:12541
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/529751
Reviewed-by: Ben Wagner <bungeman@google.com>
2022-04-14 18:13:43 +00:00

20 lines
629 B
Python

load("//bazel:macros.bzl", "generated_cc_atom")
licenses(["notice"])
generated_cc_atom(
name = "ParagraphBench_src",
srcs = ["ParagraphBench.cpp"],
visibility = ["//:__subpackages__"],
deps = [
"//bench:Benchmark_hdr",
"//include/core:SkPictureRecorder_hdr",
"//modules/skparagraph/include:FontCollection_hdr",
"//modules/skparagraph/include:Paragraph_hdr",
"//modules/skparagraph/src:ParagraphBuilderImpl_hdr",
"//modules/skparagraph/src:ParagraphImpl_hdr",
"//modules/skparagraph/utils:TestFontCollection_hdr",
"//tools:Resources_hdr",
],
)