aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/rules/objc/IntermediateArtifacts.java
diff options
context:
space:
mode:
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.java15
1 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 133745b364..b52de70399 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
@@ -119,24 +119,13 @@ final class IntermediateArtifacts {
/**
* The artifact which is the binary (or library) which is comprised of one or more .a files linked
- * together. Compared to the artifact returned by {@link #unstrippedSingleArchitectureBinary},
- * this artifact is stripped of symbol table when --compilation_mode=opt is specified.
+ * together.
*/
- public Artifact strippedSingleArchitectureBinary() {
+ public Artifact singleArchitectureBinary() {
return appendExtension("_bin");
}
/**
- * The artifact which is the binary (or library) which is comprised of one or more .a files linked
- * together. It also contains full debug symbol information, compared to the artifact returned
- * by {@link #strippedSingleArchitectureBinary}. This artifact will serve as input for the symbol
- * strip action and is only created when --compilation_mode=opt is specified.
- */
- public Artifact unstrippedSingleArchitectureBinary() {
- return appendExtension("_bin_unstripped");
- }
-
- /**
* Lipo binary generated by combining one or more linked binaries. This binary is the one included
* in generated bundles and invoked as entry point to the application.
*/