aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/gif.BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/gif.BUILD')
-rw-r--r--third_party/gif.BUILD12
1 files changed, 11 insertions, 1 deletions
diff --git a/third_party/gif.BUILD b/third_party/gif.BUILD
index fec7449130..ad6821af3c 100644
--- a/third_party/gif.BUILD
+++ b/third_party/gif.BUILD
@@ -24,6 +24,7 @@ cc_library(
visibility = ["//visibility:public"],
deps = select({
":windows": [":windows_polyfill"],
+ ":windows_msvc": [":windows_polyfill"],
"//conditions:default": [],
}),
)
@@ -41,6 +42,15 @@ genrule(
)
config_setting(
+ name = "windows_msvc",
+ values = {
+ "cpu": "x64_windows_msvc",
+ },
+)
+
+config_setting(
name = "windows",
- values = {"cpu": "x64_windows_msvc"},
+ values = {
+ "cpu": "x64_windows",
+ },
)