1load("//bazel:skia_rules.bzl", "exports_files_legacy", "skia_filegroup") 2 3package( 4 default_applicable_licenses = ["//:license"], 5) 6 7licenses(["notice"]) 8 9exports_files_legacy() 10 11skia_filegroup( 12 name = "srcs", 13 srcs = [ 14 "BentleyOttmann1.cpp", 15 "BruteForceCrossings.cpp", 16 "Contour.cpp", 17 "EventQueue.cpp", 18 "Int96.cpp", 19 "Myers.cpp", 20 "Point.cpp", 21 "Segment.cpp", 22 "SweepLine.cpp", 23 ], 24 visibility = ["//modules/bentleyottmann:__pkg__"], 25) 26