aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/rules/cpp/CppOptions.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/rules/cpp/CppOptions.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/rules/cpp/CppOptions.java35
1 files changed, 0 insertions, 35 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/rules/cpp/CppOptions.java b/src/main/java/com/google/devtools/build/lib/rules/cpp/CppOptions.java
index 888a276364..a705b3ef8d 100644
--- a/src/main/java/com/google/devtools/build/lib/rules/cpp/CppOptions.java
+++ b/src/main/java/com/google/devtools/build/lib/rules/cpp/CppOptions.java
@@ -17,7 +17,6 @@ import com.google.common.base.Splitter;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.ImmutableSet;
-import com.google.common.collect.Multimap;
import com.google.devtools.build.lib.analysis.config.BuildConfiguration;
import com.google.devtools.build.lib.analysis.config.BuildConfiguration.LabelConverter;
import com.google.devtools.build.lib.analysis.config.CompilationMode;
@@ -870,40 +869,6 @@ public class CppOptions extends FragmentOptions {
}
@Override
- public void addAllLabels(Multimap<String, Label> labelMap) {
- labelMap.put("crosstool", crosstoolTop);
- if (hostCrosstoolTop != null) {
- labelMap.put("crosstool", hostCrosstoolTop);
- }
-
- if (libcTopLabel != null) {
- Label libcLabel = libcTopLabel;
- if (libcLabel != null) {
- labelMap.put("crosstool", libcLabel);
- }
- }
- if (hostLibcTopLabel != null) {
- Label libcLabel = hostLibcTopLabel;
- if (libcLabel != null) {
- labelMap.put("crosstool", libcLabel);
- }
- }
- addOptionalLabel(labelMap, "fdo", getFdoOptimize());
-
- if (stl != null) {
- labelMap.put("STL", stl);
- }
-
- if (customMalloc != null) {
- labelMap.put("custom_malloc", customMalloc);
- }
-
- if (getLipoContext() != null) {
- labelMap.put("lipo", getLipoContext());
- }
- }
-
- @Override
public Map<String, Set<Label>> getDefaultsLabels(BuildConfiguration.Options commonOptions) {
Set<Label> crosstoolLabels = new LinkedHashSet<>();
crosstoolLabels.add(crosstoolTop);