summaryrefslogtreecommitdiffhomepage
path: root/test/benchmarks/media/BUILD
blob: bb242d385c2fccbe34a7fc532ebf375dfb3ef2b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
load("//tools:defs.bzl", "go_library", "go_test")

package(licenses = ["notice"])

go_library(
    name = "media",
    testonly = 1,
    srcs = ["media.go"],
    deps = ["//test/benchmarks/harness"],
)

go_test(
    name = "media_test",
    size = "large",
    srcs = ["ffmpeg_test.go"],
    library = ":media",
    visibility = ["//:sandbox"],
    deps = [
        "//pkg/test/dockerutil",
        "//test/benchmarks/harness",
    ],
)