24 lines
544 B
Python
24 lines
544 B
Python
load("//bazel:macros.bzl", "generated_cc_atom")
|
|
|
|
filegroup(
|
|
name = "hdrs",
|
|
srcs = [
|
|
"SkShaper.h",
|
|
],
|
|
visibility = ["//modules/skshaper:__pkg__"],
|
|
)
|
|
|
|
generated_cc_atom(
|
|
name = "SkShaper_hdr",
|
|
hdrs = ["SkShaper.h"],
|
|
visibility = ["//:__subpackages__"],
|
|
deps = [
|
|
"//include/core:SkFontMgr_hdr",
|
|
"//include/core:SkPoint_hdr",
|
|
"//include/core:SkRefCnt_hdr",
|
|
"//include/core:SkScalar_hdr",
|
|
"//include/core:SkTextBlob_hdr",
|
|
"//include/core:SkTypes_hdr",
|
|
],
|
|
)
|