github.com/bazelbuild/rules_go@v0.47.2-0.20240515105122-e7ddb9ea474e/go/constraints/arm/BUILD.bazel (about)

     1  package(
     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
     9  constraint_setting(
    10      name = "arm",
    11  )
    12  
    13  constraint_value(
    14      name = "5",
    15      constraint_setting = ":arm",
    16  )
    17  
    18  constraint_value(
    19      name = "6",
    20      constraint_setting = ":arm",
    21  )
    22  
    23  constraint_value(
    24      name = "7",
    25      constraint_setting = ":arm",
    26  )
    27  
    28  filegroup(
    29      name = "all_files",
    30      testonly = True,
    31      srcs = glob(["**"]),
    32      visibility = ["//visibility:public"],
    33  )