aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/native
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/main/native
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/main/native')
-rw-r--r--src/main/native/BUILD1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/main/native/BUILD b/src/main/native/BUILD
index ea7038524a..c65b29c7a2 100644
--- a/src/main/native/BUILD
+++ b/src/main/native/BUILD
@@ -5,7 +5,6 @@ genrule(
"//src/conditions:darwin_x86_64": ["//tools/jdk:jni_md_header-darwin"],
"//src/conditions:freebsd": ["//tools/jdk:jni_md_header-freebsd"],
"//src/conditions:windows": ["//tools/jdk:jni_md_header-windows"],
- "//src/conditions:windows_msvc": ["//tools/jdk:jni_md_header-windows"],
"//conditions:default": ["//tools/jdk:jni_md_header-linux"],
}),
outs = ["jni_md.h"],