Lines Matching +full:- +full:- +full:doc +full:- +full:build
7 # http://www.apache.org/licenses/LICENSE-2.0
15 """Common build setting rules
17 These rules return a BuildSettingInfo with the value of the build setting.
18 For label-typed settings, use the native label_flag and label_setting rules.
20 More documentation on how to use build settings at
21 https://docs.bazel.build/versions/master/skylark/config.html#user-defined-build-settings
25 doc = "A singleton provider that contains the raw value of a build setting",
27 "value": "The value of the build setting in the current configuration. " +
29 "or else it will be the build setting's default.",
39 doc = "An int-typed build setting that can be set on the command line",
45 doc = "An int-typed build setting that cannot be set on the command line",
51 doc = "A bool-typed build setting that can be set on the command line",
57 doc = "A bool-typed build setting that cannot be set on the command line",
63 doc = "A string list-typed build setting that can be set on the command line",
69 doc = "A string list-typed build setting that cannot be set on the command line",
85 …doc = "The list of allowed values for this setting. An error is raised if any other value is given…
88 doc = "A string-typed build setting that can be set on the command line",
96 …doc = "The list of allowed values for this setting. An error is raised if any other value is given…
99 doc = "A string-typed build setting that cannot be set on the command line",