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 srcs = [ 12 "BentleyOttmann1.cpp", 13 "BruteForceCrossings.cpp", 14 "Contour.cpp", 15 "EventQueue.cpp", 16 "Int96.cpp", 17 "Myers.cpp", 18 "Point.cpp", 19 "Segment.cpp", 20 "SweepLine.cpp", 21 ], 22 visibility = ["//modules/bentleyottmann:__pkg__"], 23) 24