aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party
diff options
context:
space:
mode:
authorGravatar Laszlo Csomor <laszlocsomor@google.com>2016-09-28 15:02:13 +0000
committerGravatar Yun Peng <pcloudy@google.com>2016-09-28 16:06:31 +0000
commit8896dad21f6993d4b9fd74d3a332143e75080d06 (patch)
tree04b4f5fddeeaf96feecd04421328f9980437ee81 /third_party
parentad1a77e296fe5f05624109f3af04c5bc3257e9b6 (diff)
Windows, native: add windows_msvc config_setting
Update `select` statements in BUILD files with the new config_setting. This is a first step on a long path that leads to us being able to compile bazel on Windows with --cpu=x64_windows_msvc. Needless to say, we're not there yet. Tested: on Linux, Darwin, Windows/MSYS -- MOS_MIGRATED_REVID=134534613
Diffstat (limited to 'third_party')
-rw-r--r--third_party/ijar/BUILD3
1 files changed, 3 insertions, 0 deletions
diff --git a/third_party/ijar/BUILD b/third_party/ijar/BUILD
index 9abfd4d46c..63d1182e63 100644
--- a/third_party/ijar/BUILD
+++ b/third_party/ijar/BUILD
@@ -15,6 +15,9 @@ cc_library(
"//src:windows": [
"mapped_file_windows.cc",
],
+ "//src:windows_msvc": [
+ "mapped_file_windows.cc",
+ ],
"//conditions:default": [
"mapped_file_unix.cc",
],