Merge pull request #3465 from mbinna:bazel_qnx

PiperOrigin-RevId: 382189077
diff --git a/BUILD.bazel b/BUILD.bazel
index 965c518..3c9a228 100644
--- a/BUILD.bazel
+++ b/BUILD.bazel
@@ -39,6 +39,11 @@
 exports_files(["LICENSE"])
 
 config_setting(
+    name = "qnx",
+    constraint_values = ["@platforms//os:qnx"],
+)
+
+config_setting(
     name = "windows",
     constraint_values = ["@platforms//os:windows"],
 )
@@ -86,6 +91,7 @@
         "googlemock/include/gmock/*.h",
     ]),
     copts = select({
+        ":qnx": [],
         ":windows": [],
         "//conditions:default": ["-pthread"],
     }),
@@ -104,6 +110,7 @@
         "googletest/include",
     ],
     linkopts = select({
+        ":qnx": [],
         ":windows": [],
         "//conditions:default": ["-pthread"],
     }),
diff --git a/googlemock/test/BUILD.bazel b/googlemock/test/BUILD.bazel
index efb7306..6193ed4 100644
--- a/googlemock/test/BUILD.bazel
+++ b/googlemock/test/BUILD.bazel
@@ -41,6 +41,7 @@
     size = "small",
     srcs = glob(include = ["gmock-*.cc"]),
     linkopts = select({
+        "//:qnx": [],
         "//:windows": [],
         "//conditions:default": ["-pthread"],
     }),
diff --git a/googletest/test/BUILD.bazel b/googletest/test/BUILD.bazel
index b06a00a..7b78555 100644
--- a/googletest/test/BUILD.bazel
+++ b/googletest/test/BUILD.bazel
@@ -95,6 +95,7 @@
         "googletest/test",
     ],
     linkopts = select({
+        "//:qnx": [],
         "//:windows": [],
         "//conditions:default": ["-pthread"],
     }),