brandjon | 60be531 | 2017-10-04 23:06:41 +0200 | [diff] [blame] | 1 | // Copyright 2017 The Bazel Authors. All rights reserved. |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
| 15 | package com.google.devtools.build.lib.syntax; |
| 16 | |
| 17 | import com.google.auto.value.AutoValue; |
laurentlb | e5894f0 | 2018-10-25 13:02:00 -0700 | [diff] [blame] | 18 | import com.google.common.base.Ascii; |
cparsons | 507b00f | 2018-09-12 11:59:07 -0700 | [diff] [blame] | 19 | import com.google.common.base.Preconditions; |
plf | 7e41f9b | 2018-08-03 01:47:22 -0700 | [diff] [blame] | 20 | import com.google.common.collect.ImmutableList; |
| 21 | import java.util.List; |
cparsons | 507b00f | 2018-09-12 11:59:07 -0700 | [diff] [blame] | 22 | import java.util.function.Function; |
brandjon | 60be531 | 2017-10-04 23:06:41 +0200 | [diff] [blame] | 23 | |
| 24 | /** |
| 25 | * Options that affect Skylark semantics. |
| 26 | * |
| 27 | * <p>For descriptions of what these options do, see {@link SkylarkSemanticsOptions}. |
| 28 | */ |
| 29 | // TODO(brandjon): User error messages that reference options should maybe be substituted with the |
| 30 | // option name outside of the core Skylark interpreter? |
| 31 | // TODO(brandjon): Eventually these should be documented in full here, and SkylarkSemanticsOptions |
| 32 | // should refer to this class for documentation. But this doesn't play nice with the options |
| 33 | // parser's annotation mechanism. |
| 34 | @AutoValue |
| 35 | public abstract class SkylarkSemantics { |
| 36 | |
cparsons | 6622e6f | 2018-10-17 15:00:09 -0700 | [diff] [blame] | 37 | /** |
| 38 | * Enum where each element represents a skylark semantics flag. The name of each value should |
| 39 | * be the exact name of the flag transformed to upper case (for error representation). |
| 40 | */ |
cparsons | 507b00f | 2018-09-12 11:59:07 -0700 | [diff] [blame] | 41 | public enum FlagIdentifier { |
cparsons | 645a35e | 2018-10-01 13:03:23 -0700 | [diff] [blame] | 42 | EXPERIMENTAL_ANALYSIS_TESTING_IMPROVEMENTS( |
| 43 | SkylarkSemantics::experimentalAnalysisTestingImprovements), |
Googler | 91eb3d2 | 2018-10-18 00:05:29 -0700 | [diff] [blame] | 44 | EXPERIMENTAL_ENABLE_ANDROID_MIGRATION_APIS( |
| 45 | SkylarkSemantics::experimentalEnableAndroidMigrationApis), |
cparsons | 140c076 | 2018-10-05 14:07:19 -0700 | [diff] [blame] | 46 | EXPERIMENTAL_PLATFORM_API(SkylarkSemantics::experimentalPlatformsApi), |
cparsons | 507b00f | 2018-09-12 11:59:07 -0700 | [diff] [blame] | 47 | INCOMPATIBLE_DISABLE_OBJC_PROVIDER_RESOURCES( |
| 48 | SkylarkSemantics::incompatibleDisableObjcProviderResources), |
cparsons | 3cb3a5d | 2018-10-01 10:36:08 -0700 | [diff] [blame] | 49 | INCOMPATIBLE_NO_TARGET_OUTPUT_GROUP( |
| 50 | SkylarkSemantics::incompatibleNoTargetOutputGroup), |
laurentlb | d8d3776 | 2018-10-26 14:08:33 -0700 | [diff] [blame^] | 51 | INCOMPATIBLE_NO_ATTR_LICENSE(SkylarkSemantics::incompatibleNoAttrLicense), |
cparsons | 507b00f | 2018-09-12 11:59:07 -0700 | [diff] [blame] | 52 | NONE(null); |
| 53 | |
| 54 | // Using a Function here makes the enum definitions far cleaner, and, since this is |
| 55 | // a private field, and we can ensure no callers treat this field as mutable. |
| 56 | @SuppressWarnings("ImmutableEnumChecker") |
| 57 | private final Function<SkylarkSemantics, Boolean> semanticsFunction; |
| 58 | |
| 59 | FlagIdentifier(Function<SkylarkSemantics, Boolean> semanticsFunction) { |
| 60 | this.semanticsFunction = semanticsFunction; |
| 61 | } |
cparsons | 6622e6f | 2018-10-17 15:00:09 -0700 | [diff] [blame] | 62 | |
| 63 | /** |
| 64 | * Returns the name of the flag that this identifier controls. For example, EXPERIMENTAL_FOO |
| 65 | * would return 'experimental_foo'. |
| 66 | */ |
| 67 | public String getFlagName() { |
laurentlb | e5894f0 | 2018-10-25 13:02:00 -0700 | [diff] [blame] | 68 | return Ascii.toLowerCase(this.name()); |
cparsons | 6622e6f | 2018-10-17 15:00:09 -0700 | [diff] [blame] | 69 | } |
cparsons | 507b00f | 2018-09-12 11:59:07 -0700 | [diff] [blame] | 70 | } |
| 71 | |
| 72 | /** |
| 73 | * Returns true if a feature attached to the given toggling flags should be enabled. |
| 74 | * |
| 75 | * <ul> |
| 76 | * <li>If both parameters are {@code NONE}, this indicates the feature is not |
| 77 | * controlled by flags, and should thus be enabled.</li> |
| 78 | * <li>If the {@code enablingFlag} parameter is non-{@code NONE}, this returns |
| 79 | * true if and only if that flag is true. (This represents a feature that is only on |
| 80 | * if a given flag is *on*).</li> |
| 81 | * <li>If the {@code disablingFlag} parameter is non-{@code NONE}, this returns |
| 82 | * true if and only if that flag is false. (This represents a feature that is only on |
| 83 | * if a given flag is *off*).</li> |
| 84 | * <li>It is illegal to pass both parameters as non-{@code NONE}.</li> |
| 85 | * </ul> |
| 86 | */ |
| 87 | public boolean isFeatureEnabledBasedOnTogglingFlags( |
| 88 | FlagIdentifier enablingFlag, |
| 89 | FlagIdentifier disablingFlag) { |
| 90 | Preconditions.checkArgument(enablingFlag == FlagIdentifier.NONE |
| 91 | || disablingFlag == FlagIdentifier.NONE, |
| 92 | "at least one of 'enablingFlag' or 'disablingFlag' must be NONE"); |
| 93 | if (enablingFlag != FlagIdentifier.NONE) { |
| 94 | return enablingFlag.semanticsFunction.apply(this); |
| 95 | } else { |
| 96 | return disablingFlag == FlagIdentifier.NONE || !disablingFlag.semanticsFunction.apply(this); |
| 97 | } |
| 98 | } |
| 99 | |
brandjon | 617f8ff | 2017-10-06 06:07:13 +0200 | [diff] [blame] | 100 | /** |
| 101 | * The AutoValue-generated concrete class implementing this one. |
| 102 | * |
| 103 | * <p>AutoValue implementation classes are usually package-private. We expose it here for the |
| 104 | * benefit of code that relies on reflection. |
| 105 | */ |
| 106 | public static final Class<? extends SkylarkSemantics> IMPL_CLASS = |
| 107 | AutoValue_SkylarkSemantics.class; |
| 108 | |
brandjon | 60be531 | 2017-10-04 23:06:41 +0200 | [diff] [blame] | 109 | // <== Add new options here in alphabetic order ==> |
cparsons | 645a35e | 2018-10-01 13:03:23 -0700 | [diff] [blame] | 110 | public abstract boolean experimentalAnalysisTestingImprovements(); |
| 111 | |
plf | 7e41f9b | 2018-08-03 01:47:22 -0700 | [diff] [blame] | 112 | public abstract List<String> experimentalCcSkylarkApiEnabledPackages(); |
| 113 | |
Googler | c2cd957 | 2018-10-02 14:38:15 -0700 | [diff] [blame] | 114 | public abstract boolean experimentalEnableAndroidMigrationApis(); |
| 115 | |
dannark | f2a358e | 2018-06-05 11:39:18 -0700 | [diff] [blame] | 116 | public abstract boolean experimentalEnableRepoMapping(); |
| 117 | |
dannark | ed598bc | 2018-08-07 16:31:52 -0700 | [diff] [blame] | 118 | public abstract boolean experimentalRemapMainRepo(); |
| 119 | |
cparsons | 140c076 | 2018-10-05 14:07:19 -0700 | [diff] [blame] | 120 | public abstract boolean experimentalPlatformsApi(); |
| 121 | |
cparsons | e0efc14 | 2018-10-17 09:39:10 -0700 | [diff] [blame] | 122 | public abstract boolean experimentalStarlarkConfigTransitions(); |
| 123 | |
brandjon | 60be531 | 2017-10-04 23:06:41 +0200 | [diff] [blame] | 124 | public abstract boolean incompatibleBzlDisallowLoadAfterStatement(); |
laurentlb | 1cbce0f | 2018-03-27 12:43:22 -0700 | [diff] [blame] | 125 | |
brandjon | 60be531 | 2017-10-04 23:06:41 +0200 | [diff] [blame] | 126 | public abstract boolean incompatibleDepsetIsNotIterable(); |
laurentlb | 1cbce0f | 2018-03-27 12:43:22 -0700 | [diff] [blame] | 127 | |
laurentlb | 2bbda4a | 2017-12-07 10:38:46 -0800 | [diff] [blame] | 128 | public abstract boolean incompatibleDepsetUnion(); |
laurentlb | 1cbce0f | 2018-03-27 12:43:22 -0700 | [diff] [blame] | 129 | |
cparsons | e506858 | 2018-07-16 13:33:33 -0700 | [diff] [blame] | 130 | public abstract boolean incompatibleDisableDeprecatedAttrParams(); |
| 131 | |
cparsons | 99be8b4 | 2018-03-01 15:16:46 -0800 | [diff] [blame] | 132 | public abstract boolean incompatibleDisableObjcProviderResources(); |
laurentlb | 1cbce0f | 2018-03-27 12:43:22 -0700 | [diff] [blame] | 133 | |
cparsons | 5a6fc8d | 2018-08-15 14:36:43 -0700 | [diff] [blame] | 134 | public abstract boolean incompatibleDisallowConflictingProviders(); |
| 135 | |
gregce | bceecab | 2018-06-27 17:44:45 -0700 | [diff] [blame] | 136 | public abstract boolean incompatibleDisallowDataTransition(); |
| 137 | |
brandjon | 60be531 | 2017-10-04 23:06:41 +0200 | [diff] [blame] | 138 | public abstract boolean incompatibleDisallowDictPlus(); |
laurentlb | 1cbce0f | 2018-03-27 12:43:22 -0700 | [diff] [blame] | 139 | |
laurentlb | 707acfe | 2018-04-13 06:09:30 -0700 | [diff] [blame] | 140 | public abstract boolean incompatibleDisallowFileType(); |
| 141 | |
tomlu | e374970 | 2018-05-02 09:38:00 -0700 | [diff] [blame] | 142 | public abstract boolean incompatibleDisallowLegacyJavaInfo(); |
| 143 | |
nharmata | d86b509 | 2018-10-16 15:50:21 -0700 | [diff] [blame] | 144 | public abstract boolean incompatibleDisallowLoadLabelsToCrossPackageBoundaries(); |
| 145 | |
tomlu | beafd7e | 2018-04-05 15:03:19 -0700 | [diff] [blame] | 146 | public abstract boolean incompatibleDisallowOldStyleArgsAdd(); |
| 147 | |
laurentlb | c381cf1 | 2018-04-11 04:12:14 -0700 | [diff] [blame] | 148 | public abstract boolean incompatibleDisallowSlashOperator(); |
| 149 | |
tomlu | 774bfe0 | 2018-08-24 14:15:44 -0700 | [diff] [blame] | 150 | public abstract boolean incompatibleExpandDirectories(); |
| 151 | |
elenairina | 1458c61 | 2018-06-29 08:10:12 -0700 | [diff] [blame] | 152 | public abstract boolean incompatibleGenerateJavaCommonSourceJar(); |
| 153 | |
brandjon | 60be531 | 2017-10-04 23:06:41 +0200 | [diff] [blame] | 154 | public abstract boolean incompatibleNewActionsApi(); |
laurentlb | 1cbce0f | 2018-03-27 12:43:22 -0700 | [diff] [blame] | 155 | |
laurentlb | d8d3776 | 2018-10-26 14:08:33 -0700 | [diff] [blame^] | 156 | public abstract boolean incompatibleNoAttrLicense(); |
| 157 | |
cparsons | fbc828b | 2018-10-04 14:38:50 -0700 | [diff] [blame] | 158 | public abstract boolean incompatibleNoOutputAttrDefault(); |
| 159 | |
tomlu | aaf11e9 | 2018-06-02 10:20:16 -0700 | [diff] [blame] | 160 | public abstract boolean incompatibleNoSupportToolsInActionInputs(); |
| 161 | |
cparsons | 3cb3a5d | 2018-10-01 10:36:08 -0700 | [diff] [blame] | 162 | public abstract boolean incompatibleNoTargetOutputGroup(); |
| 163 | |
laurentlb | 9d179e1 | 2018-09-27 08:15:42 -0700 | [diff] [blame] | 164 | public abstract boolean incompatibleNoTransitiveLoads(); |
| 165 | |
laurentlb | 1cbce0f | 2018-03-27 12:43:22 -0700 | [diff] [blame] | 166 | public abstract boolean incompatiblePackageNameIsAFunction(); |
| 167 | |
Taras Tsugrii | 9de215d | 2018-07-17 08:56:13 -0700 | [diff] [blame] | 168 | public abstract boolean incompatibleRangeType(); |
| 169 | |
Klaus Aehlig | ddd1c9a | 2018-03-01 05:54:39 -0800 | [diff] [blame] | 170 | public abstract boolean incompatibleRemoveNativeGitRepository(); |
laurentlb | 1cbce0f | 2018-03-27 12:43:22 -0700 | [diff] [blame] | 171 | |
Klaus Aehlig | a7b34a1 | 2018-02-20 09:31:37 -0800 | [diff] [blame] | 172 | public abstract boolean incompatibleRemoveNativeHttpArchive(); |
laurentlb | 1cbce0f | 2018-03-27 12:43:22 -0700 | [diff] [blame] | 173 | |
laurentlb | 09ec261 | 2018-08-27 12:35:56 -0700 | [diff] [blame] | 174 | public abstract boolean incompatibleStaticNameResolution(); |
| 175 | |
brandjon | 60be531 | 2017-10-04 23:06:41 +0200 | [diff] [blame] | 176 | public abstract boolean incompatibleStringIsNotIterable(); |
laurentlb | 1cbce0f | 2018-03-27 12:43:22 -0700 | [diff] [blame] | 177 | |
brandjon | 60be531 | 2017-10-04 23:06:41 +0200 | [diff] [blame] | 178 | public abstract boolean internalSkylarkFlagTestCanary(); |
| 179 | |
brandjon | 6ac92f9 | 2017-12-06 13:57:15 -0800 | [diff] [blame] | 180 | /** Returns a {@link Builder} initialized with the values of this instance. */ |
| 181 | public abstract Builder toBuilder(); |
| 182 | |
brandjon | 60be531 | 2017-10-04 23:06:41 +0200 | [diff] [blame] | 183 | public static Builder builder() { |
| 184 | return new AutoValue_SkylarkSemantics.Builder(); |
| 185 | } |
| 186 | |
brandjon | 6ac92f9 | 2017-12-06 13:57:15 -0800 | [diff] [blame] | 187 | /** Returns a {@link Builder} initialized with default values for all options. */ |
| 188 | public static Builder builderWithDefaults() { |
| 189 | return DEFAULT_SEMANTICS.toBuilder(); |
| 190 | } |
| 191 | |
vladmos | 1df4635 | 2017-11-30 03:02:36 -0800 | [diff] [blame] | 192 | public static final SkylarkSemantics DEFAULT_SEMANTICS = |
| 193 | builder() |
| 194 | // <== Add new options here in alphabetic order ==> |
cparsons | 645a35e | 2018-10-01 13:03:23 -0700 | [diff] [blame] | 195 | .experimentalAnalysisTestingImprovements(false) |
plf | 7e41f9b | 2018-08-03 01:47:22 -0700 | [diff] [blame] | 196 | .experimentalCcSkylarkApiEnabledPackages(ImmutableList.of()) |
Googler | c2cd957 | 2018-10-02 14:38:15 -0700 | [diff] [blame] | 197 | .experimentalEnableAndroidMigrationApis(false) |
dannark | f2a358e | 2018-06-05 11:39:18 -0700 | [diff] [blame] | 198 | .experimentalEnableRepoMapping(false) |
dannark | ed598bc | 2018-08-07 16:31:52 -0700 | [diff] [blame] | 199 | .experimentalRemapMainRepo(false) |
cparsons | 140c076 | 2018-10-05 14:07:19 -0700 | [diff] [blame] | 200 | .experimentalPlatformsApi(false) |
cparsons | e0efc14 | 2018-10-17 09:39:10 -0700 | [diff] [blame] | 201 | .experimentalStarlarkConfigTransitions(false) |
vladmos | 1df4635 | 2017-11-30 03:02:36 -0800 | [diff] [blame] | 202 | .incompatibleBzlDisallowLoadAfterStatement(false) |
vladmos | 1df4635 | 2017-11-30 03:02:36 -0800 | [diff] [blame] | 203 | .incompatibleDepsetIsNotIterable(false) |
laurentlb | 2bbda4a | 2017-12-07 10:38:46 -0800 | [diff] [blame] | 204 | .incompatibleDepsetUnion(false) |
cparsons | e506858 | 2018-07-16 13:33:33 -0700 | [diff] [blame] | 205 | .incompatibleDisableDeprecatedAttrParams(false) |
cparsons | 99be8b4 | 2018-03-01 15:16:46 -0800 | [diff] [blame] | 206 | .incompatibleDisableObjcProviderResources(false) |
cparsons | 5a6fc8d | 2018-08-15 14:36:43 -0700 | [diff] [blame] | 207 | .incompatibleDisallowConflictingProviders(false) |
gregce | bceecab | 2018-06-27 17:44:45 -0700 | [diff] [blame] | 208 | .incompatibleDisallowDataTransition(false) |
vladmos | 1df4635 | 2017-11-30 03:02:36 -0800 | [diff] [blame] | 209 | .incompatibleDisallowDictPlus(false) |
laurentlb | 707acfe | 2018-04-13 06:09:30 -0700 | [diff] [blame] | 210 | .incompatibleDisallowFileType(false) |
tomlu | e374970 | 2018-05-02 09:38:00 -0700 | [diff] [blame] | 211 | .incompatibleDisallowLegacyJavaInfo(false) |
nharmata | d86b509 | 2018-10-16 15:50:21 -0700 | [diff] [blame] | 212 | .incompatibleDisallowLoadLabelsToCrossPackageBoundaries(false) |
tomlu | beafd7e | 2018-04-05 15:03:19 -0700 | [diff] [blame] | 213 | .incompatibleDisallowOldStyleArgsAdd(false) |
laurentlb | c381cf1 | 2018-04-11 04:12:14 -0700 | [diff] [blame] | 214 | .incompatibleDisallowSlashOperator(false) |
tomlu | 774bfe0 | 2018-08-24 14:15:44 -0700 | [diff] [blame] | 215 | .incompatibleExpandDirectories(false) |
elenairina | 1458c61 | 2018-06-29 08:10:12 -0700 | [diff] [blame] | 216 | .incompatibleGenerateJavaCommonSourceJar(false) |
vladmos | 1df4635 | 2017-11-30 03:02:36 -0800 | [diff] [blame] | 217 | .incompatibleNewActionsApi(false) |
laurentlb | d8d3776 | 2018-10-26 14:08:33 -0700 | [diff] [blame^] | 218 | .incompatibleNoAttrLicense(false) |
cparsons | fbc828b | 2018-10-04 14:38:50 -0700 | [diff] [blame] | 219 | .incompatibleNoOutputAttrDefault(false) |
tomlu | aaf11e9 | 2018-06-02 10:20:16 -0700 | [diff] [blame] | 220 | .incompatibleNoSupportToolsInActionInputs(false) |
cparsons | 3cb3a5d | 2018-10-01 10:36:08 -0700 | [diff] [blame] | 221 | .incompatibleNoTargetOutputGroup(false) |
laurentlb | 9d179e1 | 2018-09-27 08:15:42 -0700 | [diff] [blame] | 222 | .incompatibleNoTransitiveLoads(false) |
laurentlb | 0211ef8 | 2018-09-10 11:04:57 -0700 | [diff] [blame] | 223 | .incompatiblePackageNameIsAFunction(false) |
Taras Tsugrii | 9de215d | 2018-07-17 08:56:13 -0700 | [diff] [blame] | 224 | .incompatibleRangeType(false) |
Klaus Aehlig | a55714c | 2018-10-23 02:16:02 -0700 | [diff] [blame] | 225 | .incompatibleRemoveNativeGitRepository(true) |
| 226 | .incompatibleRemoveNativeHttpArchive(true) |
laurentlb | 09ec261 | 2018-08-27 12:35:56 -0700 | [diff] [blame] | 227 | .incompatibleStaticNameResolution(false) |
Klaus Aehlig | a7b34a1 | 2018-02-20 09:31:37 -0800 | [diff] [blame] | 228 | .incompatibleStringIsNotIterable(false) |
| 229 | .internalSkylarkFlagTestCanary(false) |
| 230 | .build(); |
brandjon | 60be531 | 2017-10-04 23:06:41 +0200 | [diff] [blame] | 231 | |
| 232 | /** Builder for {@link SkylarkSemantics}. All fields are mandatory. */ |
| 233 | @AutoValue.Builder |
| 234 | public abstract static class Builder { |
| 235 | |
| 236 | // <== Add new options here in alphabetic order ==> |
cparsons | 645a35e | 2018-10-01 13:03:23 -0700 | [diff] [blame] | 237 | public abstract Builder experimentalAnalysisTestingImprovements(boolean value); |
| 238 | |
plf | 7e41f9b | 2018-08-03 01:47:22 -0700 | [diff] [blame] | 239 | public abstract Builder experimentalCcSkylarkApiEnabledPackages(List<String> value); |
| 240 | |
Googler | c2cd957 | 2018-10-02 14:38:15 -0700 | [diff] [blame] | 241 | public abstract Builder experimentalEnableAndroidMigrationApis(boolean value); |
| 242 | |
dannark | f2a358e | 2018-06-05 11:39:18 -0700 | [diff] [blame] | 243 | public abstract Builder experimentalEnableRepoMapping(boolean value); |
| 244 | |
dannark | ed598bc | 2018-08-07 16:31:52 -0700 | [diff] [blame] | 245 | public abstract Builder experimentalRemapMainRepo(boolean value); |
| 246 | |
cparsons | 140c076 | 2018-10-05 14:07:19 -0700 | [diff] [blame] | 247 | public abstract Builder experimentalPlatformsApi(boolean value); |
| 248 | |
cparsons | e0efc14 | 2018-10-17 09:39:10 -0700 | [diff] [blame] | 249 | public abstract Builder experimentalStarlarkConfigTransitions(boolean value); |
| 250 | |
brandjon | 60be531 | 2017-10-04 23:06:41 +0200 | [diff] [blame] | 251 | public abstract Builder incompatibleBzlDisallowLoadAfterStatement(boolean value); |
laurentlb | 1cbce0f | 2018-03-27 12:43:22 -0700 | [diff] [blame] | 252 | |
brandjon | 60be531 | 2017-10-04 23:06:41 +0200 | [diff] [blame] | 253 | public abstract Builder incompatibleDepsetIsNotIterable(boolean value); |
laurentlb | 1cbce0f | 2018-03-27 12:43:22 -0700 | [diff] [blame] | 254 | |
laurentlb | 2bbda4a | 2017-12-07 10:38:46 -0800 | [diff] [blame] | 255 | public abstract Builder incompatibleDepsetUnion(boolean value); |
laurentlb | 1cbce0f | 2018-03-27 12:43:22 -0700 | [diff] [blame] | 256 | |
cparsons | e506858 | 2018-07-16 13:33:33 -0700 | [diff] [blame] | 257 | public abstract Builder incompatibleDisableDeprecatedAttrParams(boolean value); |
| 258 | |
cparsons | 99be8b4 | 2018-03-01 15:16:46 -0800 | [diff] [blame] | 259 | public abstract Builder incompatibleDisableObjcProviderResources(boolean value); |
laurentlb | 1cbce0f | 2018-03-27 12:43:22 -0700 | [diff] [blame] | 260 | |
cparsons | 5a6fc8d | 2018-08-15 14:36:43 -0700 | [diff] [blame] | 261 | public abstract Builder incompatibleDisallowConflictingProviders(boolean value); |
| 262 | |
gregce | bceecab | 2018-06-27 17:44:45 -0700 | [diff] [blame] | 263 | public abstract Builder incompatibleDisallowDataTransition(boolean value); |
| 264 | |
brandjon | 60be531 | 2017-10-04 23:06:41 +0200 | [diff] [blame] | 265 | public abstract Builder incompatibleDisallowDictPlus(boolean value); |
laurentlb | 1cbce0f | 2018-03-27 12:43:22 -0700 | [diff] [blame] | 266 | |
laurentlb | 707acfe | 2018-04-13 06:09:30 -0700 | [diff] [blame] | 267 | public abstract Builder incompatibleDisallowFileType(boolean value); |
| 268 | |
tomlu | e374970 | 2018-05-02 09:38:00 -0700 | [diff] [blame] | 269 | public abstract Builder incompatibleDisallowLegacyJavaInfo(boolean value); |
| 270 | |
nharmata | d86b509 | 2018-10-16 15:50:21 -0700 | [diff] [blame] | 271 | public abstract Builder incompatibleDisallowLoadLabelsToCrossPackageBoundaries(boolean value); |
| 272 | |
tomlu | beafd7e | 2018-04-05 15:03:19 -0700 | [diff] [blame] | 273 | public abstract Builder incompatibleDisallowOldStyleArgsAdd(boolean value); |
| 274 | |
laurentlb | c381cf1 | 2018-04-11 04:12:14 -0700 | [diff] [blame] | 275 | public abstract Builder incompatibleDisallowSlashOperator(boolean value); |
| 276 | |
tomlu | 774bfe0 | 2018-08-24 14:15:44 -0700 | [diff] [blame] | 277 | public abstract Builder incompatibleExpandDirectories(boolean value); |
| 278 | |
elenairina | 1458c61 | 2018-06-29 08:10:12 -0700 | [diff] [blame] | 279 | public abstract Builder incompatibleGenerateJavaCommonSourceJar(boolean value); |
| 280 | |
brandjon | 60be531 | 2017-10-04 23:06:41 +0200 | [diff] [blame] | 281 | public abstract Builder incompatibleNewActionsApi(boolean value); |
laurentlb | 1cbce0f | 2018-03-27 12:43:22 -0700 | [diff] [blame] | 282 | |
laurentlb | d8d3776 | 2018-10-26 14:08:33 -0700 | [diff] [blame^] | 283 | public abstract Builder incompatibleNoAttrLicense(boolean value); |
| 284 | |
cparsons | fbc828b | 2018-10-04 14:38:50 -0700 | [diff] [blame] | 285 | public abstract Builder incompatibleNoOutputAttrDefault(boolean value); |
| 286 | |
tomlu | aaf11e9 | 2018-06-02 10:20:16 -0700 | [diff] [blame] | 287 | public abstract Builder incompatibleNoSupportToolsInActionInputs(boolean value); |
| 288 | |
cparsons | 3cb3a5d | 2018-10-01 10:36:08 -0700 | [diff] [blame] | 289 | public abstract Builder incompatibleNoTargetOutputGroup(boolean value); |
| 290 | |
laurentlb | 9d179e1 | 2018-09-27 08:15:42 -0700 | [diff] [blame] | 291 | public abstract Builder incompatibleNoTransitiveLoads(boolean value); |
| 292 | |
laurentlb | 1cbce0f | 2018-03-27 12:43:22 -0700 | [diff] [blame] | 293 | public abstract Builder incompatiblePackageNameIsAFunction(boolean value); |
| 294 | |
Taras Tsugrii | 9de215d | 2018-07-17 08:56:13 -0700 | [diff] [blame] | 295 | public abstract Builder incompatibleRangeType(boolean value); |
| 296 | |
Klaus Aehlig | ddd1c9a | 2018-03-01 05:54:39 -0800 | [diff] [blame] | 297 | public abstract Builder incompatibleRemoveNativeGitRepository(boolean value); |
laurentlb | 1cbce0f | 2018-03-27 12:43:22 -0700 | [diff] [blame] | 298 | |
Klaus Aehlig | a7b34a1 | 2018-02-20 09:31:37 -0800 | [diff] [blame] | 299 | public abstract Builder incompatibleRemoveNativeHttpArchive(boolean value); |
laurentlb | 1cbce0f | 2018-03-27 12:43:22 -0700 | [diff] [blame] | 300 | |
laurentlb | 09ec261 | 2018-08-27 12:35:56 -0700 | [diff] [blame] | 301 | public abstract Builder incompatibleStaticNameResolution(boolean value); |
| 302 | |
brandjon | 60be531 | 2017-10-04 23:06:41 +0200 | [diff] [blame] | 303 | public abstract Builder incompatibleStringIsNotIterable(boolean value); |
laurentlb | 1cbce0f | 2018-03-27 12:43:22 -0700 | [diff] [blame] | 304 | |
brandjon | 60be531 | 2017-10-04 23:06:41 +0200 | [diff] [blame] | 305 | public abstract Builder internalSkylarkFlagTestCanary(boolean value); |
| 306 | |
brandjon | 60be531 | 2017-10-04 23:06:41 +0200 | [diff] [blame] | 307 | public abstract SkylarkSemantics build(); |
| 308 | } |
| 309 | } |