aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/rules/objc/AppleBinaryRule.java
diff options
context:
space:
mode:
authorGravatar Jon Brandvein <brandjon@google.com>2017-02-28 17:51:43 +0000
committerGravatar Kristina Chodorow <kchodorow@google.com>2017-02-28 18:56:25 +0000
commit6525e389b854b2bb4e84a4145c0a3945d7e195bd (patch)
tree2bdd7a3b327194688dc904e10fe1f3243370f59c /src/main/java/com/google/devtools/build/lib/rules/objc/AppleBinaryRule.java
parent8e29780fed3012ae05348f68bda9103b6e0de1e5 (diff)
*** Reason for rollback *** -- PiperOrigin-RevId: 148781019 MOS_MIGRATED_REVID=148781019
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/rules/objc/AppleBinaryRule.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/rules/objc/AppleBinaryRule.java7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/rules/objc/AppleBinaryRule.java b/src/main/java/com/google/devtools/build/lib/rules/objc/AppleBinaryRule.java
index 79e2b1879d..d19b6900b3 100644
--- a/src/main/java/com/google/devtools/build/lib/rules/objc/AppleBinaryRule.java
+++ b/src/main/java/com/google/devtools/build/lib/rules/objc/AppleBinaryRule.java
@@ -40,7 +40,6 @@ public class AppleBinaryRule implements RuleDefinition {
public static final String BINARY_TYPE_ATTR = "binary_type";
public static final String BUNDLE_LOADER_ATTR_NAME = "bundle_loader";
- public static final String EXTENSION_SAFE_ATTR_NAME = "extension_safe";
private final ObjcProtoAspect objcProtoAspect;
@@ -119,12 +118,6 @@ public class AppleBinaryRule implements RuleDefinition {
attr(BINARY_TYPE_ATTR, STRING)
.value(AppleBinary.BinaryType.EXECUTABLE.toString())
.allowedValues(new AllowedValueSet(AppleBinary.BinaryType.getValues())))
- /* <!-- #BLAZE_RULE(apple_binary).ATTRIBUTE(extension_safe) -->
- Indicates whether this binary is for an extension. This will set certain compiler
- options and restrictions on dependencies of this target.
- <!-- #END_BLAZE_RULE.ATTRIBUTE --> */
- .add(attr(EXTENSION_SAFE_ATTR_NAME, BOOLEAN).value(false)
- .nonconfigurable("Determines the configuration transition on deps"))
.add(
attr(BUNDLE_LOADER_ATTR_NAME, LABEL)
.direct_compile_time_input()