aboutsummaryrefslogtreecommitdiffhomepage
path: root/gmock.BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'gmock.BUILD')
-rw-r--r--gmock.BUILD28
1 files changed, 0 insertions, 28 deletions
diff --git a/gmock.BUILD b/gmock.BUILD
deleted file mode 100644
index b1ae15a9..00000000
--- a/gmock.BUILD
+++ /dev/null
@@ -1,28 +0,0 @@
-cc_library(
- name = "gtest",
- srcs = [
- "googletest/src/gtest-all.cc",
- "googlemock/src/gmock-all.cc",
- ],
- hdrs = glob([
- "**/*.h",
- "googletest/src/*.cc",
- "googlemock/src/*.cc",
- ]),
- includes = [
- "googlemock",
- "googletest",
- "googletest/include",
- "googlemock/include",
- ],
- linkopts = ["-pthread"],
- visibility = ["//visibility:public"],
-)
-
-cc_library(
- name = "gtest_main",
- srcs = ["googlemock/src/gmock_main.cc"],
- linkopts = ["-pthread"],
- visibility = ["//visibility:public"],
- deps = [":gtest"],
-)