summaryrefslogtreecommitdiffstats
path: root/googletest/test/BUILD.bazel
diff options
context:
space:
mode:
authorLoo Rong Jie <loorongjie@gmail.com>2018-01-07 14:52:52 (GMT)
committerLoo Rong Jie <loorongjie@gmail.com>2018-01-09 00:29:44 (GMT)
commitcbd15d417e9a9b8dfbac4483d49b4e0c6664b940 (patch)
tree5b06d821076e7013cb62593fb22270916292ba3a /googletest/test/BUILD.bazel
parentc3bb0ee2a63279a803aaad956b9b26d74bf9e6e2 (diff)
downloadgoogletest-cbd15d417e9a9b8dfbac4483d49b4e0c6664b940.zip
googletest-cbd15d417e9a9b8dfbac4483d49b4e0c6664b940.tar.gz
googletest-cbd15d417e9a9b8dfbac4483d49b4e0c6664b940.tar.bz2
[Bazel] Detect Windows with cpu value x64_windows and x64_windows_msvcrefs/pull/1388/head
and x64_windows_msvc
Diffstat (limited to 'googletest/test/BUILD.bazel')
-rw-r--r--googletest/test/BUILD.bazel9
1 files changed, 6 insertions, 3 deletions
diff --git a/googletest/test/BUILD.bazel b/googletest/test/BUILD.bazel
index 5daa154..62b88da 100644
--- a/googletest/test/BUILD.bazel
+++ b/googletest/test/BUILD.bazel
@@ -57,13 +57,15 @@ cc_test(
"gtest-param-test_test.cc",
],
) + select({
- "//:win": [],
+ "//:windows": [],
+ "//:windows_msvc": [],
"//conditions:default": [
"gtest-tuple_test.cc",
],
}),
copts = select({
- "//:win": ["-DGTEST_USE_OWN_TR1_TUPLE=0"],
+ "//:windows": ["-DGTEST_USE_OWN_TR1_TUPLE=0"],
+ "//:windows_msvc": ["-DGTEST_USE_OWN_TR1_TUPLE=0"],
"//conditions:default": ["-DGTEST_USE_OWN_TR1_TUPLE=1"],
}),
includes = [
@@ -73,7 +75,8 @@ cc_test(
"googletest/test",
],
linkopts = select({
- "//:win": [],
+ "//:windows": [],
+ "//:windows_msvc": [],
"//conditions:default": [
"-pthread",
],