aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/rules/objc/ObjcBundleLibraryRule.java
diff options
context:
space:
mode:
authorGravatar schmitt <schmitt@google.com>2017-05-03 22:46:58 +0200
committerGravatar Damien Martin-Guillerez <dmarting@google.com>2017-05-04 13:13:51 +0200
commit5f1d88646b35625aa90a178efb8ef8ca4b736a00 (patch)
tree6abf0f4e15e3568e6fd6d6cb7a017db3a048c57c /src/main/java/com/google/devtools/build/lib/rules/objc/ObjcBundleLibraryRule.java
parentcc21998c299b4d1f97df37b961552ff8168da17f (diff)
Remove xcodeproj as implicit output.
RELNOTES[INC]: Blaze no longer generates xcode projects. Use tulsi.bazel.build instead. PiperOrigin-RevId: 154997997
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/rules/objc/ObjcBundleLibraryRule.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/rules/objc/ObjcBundleLibraryRule.java7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/rules/objc/ObjcBundleLibraryRule.java b/src/main/java/com/google/devtools/build/lib/rules/objc/ObjcBundleLibraryRule.java
index 4ddba27f78..b488ad4420 100644
--- a/src/main/java/com/google/devtools/build/lib/rules/objc/ObjcBundleLibraryRule.java
+++ b/src/main/java/com/google/devtools/build/lib/rules/objc/ObjcBundleLibraryRule.java
@@ -29,13 +29,6 @@ public class ObjcBundleLibraryRule implements RuleDefinition {
public RuleClass build(Builder builder, RuleDefinitionEnvironment env) {
return builder
.requiresConfigurationFragments(ObjcConfiguration.class, AppleConfiguration.class)
- /*<!-- #BLAZE_RULE(objc_bundle_library).IMPLICIT_OUTPUTS -->
- <ul>
- <li><code><var>name</var>.xcodeproj/project.pbxproj</code>: An Xcode project file which
- can be used to develop or build on a Mac.</li>
- </ul>
- <!-- #END_BLAZE_RULE.IMPLICIT_OUTPUTS -->*/
- .setImplicitOutputsFunction(XcodeSupport.PBXPROJ)
.cfg(AppleCrosstoolTransition.APPLE_CROSSTOOL_TRANSITION)
.build();
}