aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google
diff options
context:
space:
mode:
authorGravatar schmitt <schmitt@google.com>2017-08-14 21:44:50 +0200
committerGravatar Irina Iancu <elenairina@google.com>2017-08-16 11:05:11 +0200
commit1e98851e9da9e7d9f83a71629b3a34fa77763487 (patch)
tree5bcd57cbebca95dd9fc35b5306b7a0a992342592 /src/main/java/com/google
parent1cbe62a09b37f2db76e11ebb18fb46616076ef87 (diff)
Delete last vestiges of xcodegen.
RELNOTES: None. PiperOrigin-RevId: 165215334
Diffstat (limited to 'src/main/java/com/google')
-rw-r--r--src/main/java/com/google/devtools/build/lib/rules/objc/IntermediateArtifacts.java8
-rw-r--r--src/main/java/com/google/devtools/build/lib/rules/objc/IosTest.java5
-rw-r--r--src/main/java/com/google/devtools/build/lib/rules/objc/ObjcLibraryRule.java2
3 files changed, 2 insertions, 13 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/rules/objc/IntermediateArtifacts.java b/src/main/java/com/google/devtools/build/lib/rules/objc/IntermediateArtifacts.java
index 668790132b..23f47b3629 100644
--- a/src/main/java/com/google/devtools/build/lib/rules/objc/IntermediateArtifacts.java
+++ b/src/main/java/com/google/devtools/build/lib/rules/objc/IntermediateArtifacts.java
@@ -300,14 +300,6 @@ public final class IntermediateArtifacts {
}
/**
- * Returns the artifact corresponding to the pbxproj control file, which specifies the information
- * required to generate the Xcode project file.
- */
- public Artifact pbxprojControlArtifact() {
- return appendExtension(".xcodeproj-control");
- }
-
- /**
* The artifact which contains the zipped-up results of compiling the storyboard. This is merged
* into the final bundle under the {@code .app} or {@code .bundle} directory root.
*/
diff --git a/src/main/java/com/google/devtools/build/lib/rules/objc/IosTest.java b/src/main/java/com/google/devtools/build/lib/rules/objc/IosTest.java
index 9cd27253cd..c6a8473005 100644
--- a/src/main/java/com/google/devtools/build/lib/rules/objc/IosTest.java
+++ b/src/main/java/com/google/devtools/build/lib/rules/objc/IosTest.java
@@ -78,9 +78,8 @@ public final class IosTest implements RuleConfiguredTargetFactory {
*
* <p>Creates a target, including registering actions, just as {@link #create(RuleContext)} does.
* The difference between {@link #create(RuleContext)} and this method is that this method does
- * only what is needed to support tests on the environment besides generate the Xcodeproj file and
- * build the app and test {@code .ipa}s. The {@link #create(RuleContext)} method delegates to this
- * method.
+ * only what is needed to support tests on the environment besides build the app and test {@code
+ * .ipa}s. The {@link #create(RuleContext)} method delegates to this method.
*/
@Override
public final ConfiguredTarget create(RuleContext ruleContext)
diff --git a/src/main/java/com/google/devtools/build/lib/rules/objc/ObjcLibraryRule.java b/src/main/java/com/google/devtools/build/lib/rules/objc/ObjcLibraryRule.java
index 5aa9546fb3..8ab4393288 100644
--- a/src/main/java/com/google/devtools/build/lib/rules/objc/ObjcLibraryRule.java
+++ b/src/main/java/com/google/devtools/build/lib/rules/objc/ObjcLibraryRule.java
@@ -34,8 +34,6 @@ public class ObjcLibraryRule implements RuleDefinition {
ObjcConfiguration.class, AppleConfiguration.class, CppConfiguration.class)
/*<!-- #BLAZE_RULE(objc_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>
<li><code><var>name</var>_fully_linked.a</code>: A fully linked static library that
contains the full transitive closure of library dependencies.</li>
</ul>