blob: 6c41fc4f651a517ecc75767c117de8420c194859 (
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", "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",
deps = [
"//pkg/test/dockerutil",
"//test/benchmarks/harness",
],
)
|