aboutsummaryrefslogtreecommitdiff
path: root/go/constraints/amd64/BUILD.bazel
blob: 0bc0ba3f849bb8593387898ebd56f1293f78b3ee (plain)
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
31
32
33
34
35
36
37
38
package(
    default_visibility = ["//visibility:public"],
)

# Represents the level of support for the particular microarchitecture of a
# target platform based on the general amd64 architecture.
# GOAMD64 is set based on the chosen constraint_value.
# See https://github.com/golang/go/wiki/MinimumRequirements#amd64
constraint_setting(
    name = "amd64",
)

constraint_value(
    name = "v1",
    constraint_setting = ":amd64",
)

constraint_value(
    name = "v2",
    constraint_setting = ":amd64",
)

constraint_value(
    name = "v3",
    constraint_setting = ":amd64",
)

constraint_value(
    name = "v4",
    constraint_setting = ":amd64",
)

filegroup(
    name = "all_files",
    testonly = True,
    srcs = glob(["**"]),
    visibility = ["//visibility:public"],
)