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 = "tests", 13 srcs = [ 14 "BentleyOttmann1Test.cpp", 15 "BruteForceCrossingsTest.cpp", 16 "ContourTest.cpp", 17 "EventQueueTest.cpp", 18 "Int96Test.cpp", 19 "MyersTest.cpp", 20 "PointTest.cpp", 21 "SegmentTest.cpp", 22 "SweepLineTest.cpp", 23 ], 24) 25