1load("//bazel:skia_rules.bzl", "skia_cc_library") 2 3package( 4 default_applicable_licenses = ["//:license"], 5) 6 7licenses(["notice"]) 8 9skia_cc_library( 10 name = "testrunner", 11 testonly = True, 12 srcs = ["BazelUnitTestRunner.cpp"], 13 visibility = ["//tests:__pkg__"], 14 deps = [ 15 "//:core", 16 "//tests:test_harness", 17 "//tools/testrunners/common:testrunner", 18 ], 19) 20