| load("//bazel:macros.bzl", "exports_files_legacy", "split_srcs_and_hdrs") | |
| licenses(["notice"]) | |
| exports_files_legacy() | |
| TEXT_FILES = [ | |
| "GlyphRun.cpp", | |
| "GlyphRun.h", | |
| ] | |
| split_srcs_and_hdrs( | |
| name = "text", | |
| files = TEXT_FILES, | |
| ) | |
| filegroup( | |
| name = "srcs", | |
| srcs = [":text_srcs"], | |
| visibility = ["//src:__pkg__"], | |
| ) | |
| filegroup( | |
| name = "private_hdrs", | |
| srcs = [":text_hdrs"], | |
| visibility = ["//src:__pkg__"], | |
| ) |