1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
load("//tools:defs.bzl", "go_library")
package(licenses = ["notice"])
go_library(
name = "test",
srcs = [
"aliases.go",
"alignment.go",
"anon.go",
"atomics.go",
"basics.go",
"branches.go",
"closures.go",
"defer.go",
"globals.go",
"incompat.go",
"inferred.go",
"locker.go",
"methods.go",
"parameters.go",
"return.go",
"rwmutex.go",
"test.go",
],
# This ensures that there are no dependencies, since we want to explicitly
# control expected failures for analysis.
marshal = False,
stateify = False,
)
|