aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/rules/objc/IntermediateArtifacts.java
diff options
context:
space:
mode:
authorGravatar Dmitry Shevchenko <dmishe@google.com>2016-11-23 21:50:27 +0000
committerGravatar Dmitry Lomov <dslomov@google.com>2016-11-24 10:32:59 +0000
commit270fdd6b4a22f96a3642e7d3bb562b721cde099b (patch)
tree2e19de42131252e81160f3eade95cd1758e869f4 /src/main/java/com/google/devtools/build/lib/rules/objc/IntermediateArtifacts.java
parentf8eba6ab7df665a5ba9820bbc1071186989d25b6 (diff)
Remove Swift support from native rules
-- MOS_MIGRATED_REVID=140068224
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/rules/objc/IntermediateArtifacts.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/rules/objc/IntermediateArtifacts.java21
1 files changed, 0 insertions, 21 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 e4df72f279..42d437f7d5 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
@@ -271,27 +271,6 @@ public final class IntermediateArtifacts {
}
/**
- * The swift module produced by compiling the {@code source} artifact.
- */
- public Artifact swiftModuleFile(Artifact source) {
- return inUniqueObjsDir(source, ".partial_swiftmodule");
- }
-
- /**
- * Integrated swift module for this target.
- */
- public Artifact swiftModule() {
- return appendExtension(".swiftmodule");
- }
-
- /**
- * Integrated swift header for this target.
- */
- public Artifact swiftHeader() {
- return appendExtension("-Swift.h");
- }
-
- /**
* The artifact for the .gcno file that should be generated when compiling the {@code source}
* artifact.
*/