blob: ad2ef3a55d51c88d7e9ac7f0f486eb265583d239 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
load("//tools:defs.bzl", "go_library")
load("//test/benchmarks:defs.bzl", "benchmark_test")
package(licenses = ["notice"])
go_library(
name = "media",
testonly = 1,
srcs = ["media.go"],
)
benchmark_test(
name = "ffmpeg_test",
srcs = ["ffmpeg_test.go"],
library = ":media",
visibility = ["//:sandbox"],
deps = [
"//pkg/test/dockerutil",
"//test/benchmarks/harness",
],
)
|