From c924cf6f464cf24ac6ba4fb1c1d34aa2fe567e3f Mon Sep 17 00:00:00 2001 From: Yun Peng Date: Fri, 12 Jan 2018 09:13:10 -0800 Subject: 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 --- src/tools/singlejar/BUILD | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/tools/singlejar') diff --git a/src/tools/singlejar/BUILD b/src/tools/singlejar/BUILD index e7ff2ae6c4..3545e1f6e1 100644 --- a/src/tools/singlejar/BUILD +++ b/src/tools/singlejar/BUILD @@ -6,8 +6,6 @@ JAR_TOOL_PATH_COPT_TPL = "-DJAR_TOOL_PATH=\\\"external/local_jdk/bin/jar%s\\\"" JAR_TOOL_PATH_COPTS = select({ "//src/conditions:windows": [JAR_TOOL_PATH_COPT_TPL % ".exe"], - "//src/conditions:windows_msvc": [JAR_TOOL_PATH_COPT_TPL % ".exe"], - "//src/conditions:windows_msys": [JAR_TOOL_PATH_COPT_TPL % ".exe"], "//conditions:default": [JAR_TOOL_PATH_COPT_TPL % ""], }) -- cgit v1.2.3