...

Text file src/github.com/bazelbuild/rules_go/go/constraints/arm/BUILD.bazel

Documentation: github.com/bazelbuild/rules_go/go/constraints/arm

     1package(
     2    default_visibility = ["//visibility:public"],
     3)
     4
     5# Represents the level of support for the particular microarchitecture of a
     6# target platform based on the general arm architecture.
     7# GOARM is set based on the chosen constraint_value.
     8# See https://go.dev/wiki/MinimumRequirements#arm
     9constraint_setting(
    10    name = "arm",
    11)
    12
    13constraint_value(
    14    name = "5",
    15    constraint_setting = ":arm",
    16)
    17
    18constraint_value(
    19    name = "6",
    20    constraint_setting = ":arm",
    21)
    22
    23constraint_value(
    24    name = "7",
    25    constraint_setting = ":arm",
    26)
    27
    28filegroup(
    29    name = "all_files",
    30    testonly = True,
    31    srcs = glob(["**"]),
    32    visibility = ["//visibility:public"],
    33)

View as plain text