aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google
diff options
context:
space:
mode:
authorGravatar jcater <jcater@google.com>2018-04-26 11:45:19 -0700
committerGravatar Copybara-Service <copybara-piper@google.com>2018-04-26 11:46:38 -0700
commit3ce468c6cda0e9ea4c0156af0e88c8f79712059e (patch)
tree34643f130c22dc97cc85b591c91f2cea8dffe95e /src/main/java/com/google
parentdade44dab4a571acc710f0960a3afda0d7b183b3 (diff)
Remove unused method.
PiperOrigin-RevId: 194430205
Diffstat (limited to 'src/main/java/com/google')
-rw-r--r--src/main/java/com/google/devtools/build/lib/rules/objc/CompilationSupport.java38
1 files changed, 0 insertions, 38 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/rules/objc/CompilationSupport.java b/src/main/java/com/google/devtools/build/lib/rules/objc/CompilationSupport.java
index 30b57a00f2..6faaa1958a 100644
--- a/src/main/java/com/google/devtools/build/lib/rules/objc/CompilationSupport.java
+++ b/src/main/java/com/google/devtools/build/lib/rules/objc/CompilationSupport.java
@@ -1208,44 +1208,6 @@ public class CompilationSupport {
}
/**
- * Registers any actions necessary to link this rule and its dependencies. Automatically infers
- * the toolchain from the configuration of this CompilationSupport - if a different toolchain is
- * required, use the custom toolchain override.
- *
- * <p>Dsym bundle is generated if {@link ObjcConfiguration#generateDsym()} is set.
- *
- * <p>When Bazel flags {@code --compilation_mode=opt} and {@code --objc_enable_binary_stripping}
- * are specified, additional optimizations will be performed on the linked binary: all-symbol
- * stripping (using {@code /usr/bin/strip}) and dead-code stripping (using linker flags: {@code
- * -dead_strip} and {@code -no_dead_strip_inits_and_terms}).
- *
- * @param objcProvider common information about this rule's attributes and its dependencies
- * @param j2ObjcMappingFileProvider contains mapping files for j2objc transpilation
- * @param j2ObjcEntryClassProvider contains j2objc entry class information for dead code removal
- * @param extraLinkArgs any additional arguments to pass to the linker
- * @param extraLinkInputs any additional input artifacts to pass to the link action
- * @param dsymOutputType the file type of the dSYM bundle to be generated
- * @return this compilation support
- */
- CompilationSupport registerLinkActions(
- ObjcProvider objcProvider,
- J2ObjcMappingFileProvider j2ObjcMappingFileProvider,
- J2ObjcEntryClassProvider j2ObjcEntryClassProvider,
- ExtraLinkArgs extraLinkArgs,
- Iterable<Artifact> extraLinkInputs,
- DsymOutputType dsymOutputType)
- throws InterruptedException {
- return registerLinkActions(
- objcProvider,
- j2ObjcMappingFileProvider,
- j2ObjcEntryClassProvider,
- extraLinkArgs,
- extraLinkInputs,
- dsymOutputType,
- CppHelper.getToolchainUsingDefaultCcToolchainAttribute(ruleContext));
- }
-
- /**
* Returns the copts for the compile action in the current rule context (using a combination of
* the rule's "copts" attribute as well as the current configuration copts).
*/