aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/BUILD
diff options
context:
space:
mode:
authorGravatar Yun Peng <pcloudy@google.com>2018-01-12 09:13:10 -0800
committerGravatar Copybara-Service <copybara-piper@google.com>2018-01-12 09:15:08 -0800
commitc924cf6f464cf24ac6ba4fb1c1d34aa2fe567e3f (patch)
treed6a4b6bdca32ba5d900539307ef5ce485d6a5a85 /src/BUILD
parentd4c19e65c9e219772d22720761ef7646cdb210f8 (diff)
Clean up Windows config_settings
1.Deleted config_setting for --cpu=x64_windows_msys, because we don't build Bazel with MSYS gcc anymore. 2.Deleted config_setting for --cpu=x64_windows_msvc, because it uses exactly the same toolchain as --cpu=x64_windows, it'll be removed in the future. This change reduces the complexity of our BUILD files and make them less confusing. Change-Id: I939831a6861413b0f745fb1be98aacd4fb780e0a PiperOrigin-RevId: 181751853
Diffstat (limited to 'src/BUILD')
-rw-r--r--src/BUILD25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/BUILD b/src/BUILD
index 9fbbc4785f..119e19b099 100644
--- a/src/BUILD
+++ b/src/BUILD
@@ -11,8 +11,6 @@ filegroup(
"//src/conditions:darwin": ["//src/main/native:libunix.dylib"],
"//src/conditions:darwin_x86_64": ["//src/main/native:libunix.dylib"],
"//src/conditions:windows": ["//src/main/native/windows:windows_jni.dll"],
- "//src/conditions:windows_msys": ["//src/main/native/windows:windows_jni.dll"],
- "//src/conditions:windows_msvc": ["//src/main/native/windows:windows_jni.dll"],
"//conditions:default": ["//src/main/native:libunix.so"],
}),
visibility = [
@@ -189,16 +187,6 @@ py_binary(
"//src/tools/launcher:launcher",
"//third_party/def_parser:def_parser",
],
- "//src/conditions:windows_msys": [
- "//src/java_tools/singlejar:SingleJar_deploy.jar",
- "//src/tools/launcher:launcher",
- "//third_party/def_parser:def_parser",
- ],
- "//src/conditions:windows_msvc": [
- "//src/java_tools/singlejar:SingleJar_deploy.jar",
- "//src/tools/launcher:launcher",
- "//third_party/def_parser:def_parser",
- ],
"//src/conditions:arm": [
"//src/java_tools/singlejar:SingleJar_deploy.jar",
],
@@ -212,12 +200,6 @@ py_binary(
"//src/conditions:darwin_x86_64": [
"@openjdk_macos//file",
],
- "//src/conditions:windows_msys": [
- "@openjdk_win//file",
- ],
- "//src/conditions:windows_msvc": [
- "@openjdk_win//file",
- ],
"//src/conditions:windows": [
"@openjdk_win//file",
],
@@ -438,10 +420,3 @@ alias(
actual = "//src/conditions:windows",
visibility = ["//visibility:public"],
)
-
-# config_setting alias left here because bazel-only third_party code is pointing to it
-alias(
- name = "windows_msvc",
- actual = "//src/conditions:windows_msvc",
- visibility = ["//visibility:public"],
-)