aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/Constants.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/Constants.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/Constants.java7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/Constants.java b/src/main/java/com/google/devtools/build/lib/Constants.java
index 8103f50e17..0928dc926e 100644
--- a/src/main/java/com/google/devtools/build/lib/Constants.java
+++ b/src/main/java/com/google/devtools/build/lib/Constants.java
@@ -14,9 +14,6 @@
package com.google.devtools.build.lib;
-import com.google.common.collect.ImmutableList;
-import com.google.common.collect.ImmutableSet;
-
/**
* A temporary class of constants; these encode differences between Google's internal setup and
* Bazel. We're working to remove this class, which requires cleaning up our internal code base.
@@ -34,10 +31,6 @@ public final class Constants {
// Locations of implicit Android SDK dependencies.
public static final String ANDROID_DEFAULT_SDK = "//external:android/sdk";
- // If the --fat_apk_cpu flag is not set, we use this as the default value.
- public static final ImmutableList<String> ANDROID_DEFAULT_FAT_APK_CPUS =
- ImmutableList.<String>of("armeabi-v7a");
-
// Most other tools dependencies use this; we plan to split it into per-language repositories.
public static final String TOOLS_REPOSITORY = "@bazel_tools";
}