1load("//bazel:skia_rules.bzl", "skia_filegroup") 2 3package( 4 default_applicable_licenses = ["//:license"], 5) 6 7licenses(["notice"]) 8 9skia_filegroup( 10 name = "srcs", 11 testonly = True, 12 srcs = [ 13 "Window_ios.h", 14 "Window_ios.mm", 15 "main_ios.mm", 16 ], 17) 18 19skia_filegroup( 20 name = "hdrs", 21 testonly = True, 22 srcs = [ 23 "Window_ios.h", 24 ], 25 visibility = ["//tools/window:__pkg__"], 26) 27