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