1load("//bazel:skia_rules.bzl", "split_srcs_and_hdrs") 2 3package( 4 default_applicable_licenses = ["//:license"], 5) 6 7licenses(["notice"]) 8 9TEXT_FILES = [ 10 "GlyphRun.cpp", 11 "GlyphRun.h", 12 "StrikeForGPU.cpp", 13 "StrikeForGPU.h", 14 "SlugFromBuffer.cpp", 15] 16 17split_srcs_and_hdrs( 18 name = "text", 19 files = TEXT_FILES, 20 visibility = [ 21 "//src/core:__pkg__", 22 ], 23) 24