-
-
Notifications
You must be signed in to change notification settings - Fork 664
/
list.bzl
83 lines (77 loc) · 2.92 KB
/
list.bzl
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# Copyright 2017 The Bazel Authors. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
load(
"@io_bazel_rules_go//go/private:platforms.bzl",
_GOARCH = "GOARCH_CONSTRAINTS",
_GOOS = "GOOS_CONSTRAINTS",
_GOOS_GOARCH = "GOOS_GOARCH",
_MSAN_GOOS_GOARCH = "MSAN_GOOS_GOARCH",
_RACE_GOOS_GOARCH = "RACE_GOOS_GOARCH",
)
GOOS_GOARCH = _GOOS_GOARCH
GOOS = _GOOS
GOARCH = _GOARCH
RACE_GOOS_GOARCH = _RACE_GOOS_GOARCH
MSAN_GOOS_GOARCH = _MSAN_GOOS_GOARCH
def declare_config_settings():
"""Generates config_setting targets.
declare_config_settings declares a config_setting target for each goos,
goarch, and valid goos_goarch pair. These targets may be used in select
expressions. Each target refers to a corresponding constraint_value in
//go/toolchain.
"""
for goos in GOOS:
native.config_setting(
name = goos,
constraint_values = ["@io_bazel_rules_go//go/toolchain:" + goos],
)
for goarch in GOARCH:
native.config_setting(
name = goarch,
constraint_values = ["@io_bazel_rules_go//go/toolchain:" + goarch],
)
for goos, goarch in GOOS_GOARCH:
native.config_setting(
name = goos + "_" + goarch,
constraint_values = [
"@io_bazel_rules_go//go/toolchain:" + goos,
"@io_bazel_rules_go//go/toolchain:" + goarch,
],
)
# Additional settings for ios. Unfortunately, we cannot have a "darwin"
# setting that covers both operating systems, so "darwin" here means macOS.
# The "darwin" build tag will be true for both during execution; this only
# matters when evaluating select expressions.
native.config_setting(
name = "ios",
constraint_values = [
"@platforms//os:ios",
],
)
for goarch in ("arm", "arm64", "386", "amd64"):
native.config_setting(
name = "ios_" + goarch,
constraint_values = [
"@platforms//os:ios",
"@io_bazel_rules_go//go/toolchain:" + goarch,
],
)
# Setting that determines whether cgo is enabled.
# This is experimental and may be changed or removed when we migrate
# to build settings.
native.config_setting(
name = "internal_cgo_off",
constraint_values = ["@io_bazel_rules_go//go/toolchain:cgo_off"],
visibility = ["@io_bazel_rules_go//:__pkg__"],
)