aboutsummaryrefslogtreecommitdiffstats
path: root/googlemock/test/BUILD.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'googlemock/test/BUILD.bazel')
-rw-r--r--googlemock/test/BUILD.bazel25
1 files changed, 25 insertions, 0 deletions
diff --git a/googlemock/test/BUILD.bazel b/googlemock/test/BUILD.bazel
new file mode 100644
index 00000000..88e82e60
--- /dev/null
+++ b/googlemock/test/BUILD.bazel
@@ -0,0 +1,25 @@
+# Copyright 2017 Google Inc. All Rights Reserved.
+# Author: misterg@google.com (Gennadiy Civil)
+#
+# Description:
+# Bazel BUILD file for googletest-googlemock/test, initial revision
+#
+
+""" gmock own tests """
+
+cc_test(
+ name = "gmock_all_test",
+ size = "small",
+ srcs = glob(
+ include = [
+ "gmock-*.cc",
+ ],
+ ),
+ linkopts = select({
+ "//:win": [],
+ "//conditions:default": [
+ "-pthread",
+ ],
+ }),
+ deps = ["//:gtest"],
+)