aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/gmock.BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/gmock.BUILD')
-rw-r--r--third_party/gmock.BUILD18
1 files changed, 9 insertions, 9 deletions
diff --git a/third_party/gmock.BUILD b/third_party/gmock.BUILD
index 501e322529..b800cac954 100644
--- a/third_party/gmock.BUILD
+++ b/third_party/gmock.BUILD
@@ -9,19 +9,19 @@ exports_files(["LICENSE"])
cc_library(
name = "gtest",
srcs = [
- "gtest/src/gtest-all.cc",
- "src/gmock-all.cc",
+ "googlemock/src/gmock-all.cc",
+ "googletest/src/gtest-all.cc",
],
hdrs = glob([
"**/*.h",
- "gtest/src/*.cc",
- "src/*.cc",
+ "googletest/src/*.cc",
+ "googlemock/src/*.cc",
]),
includes = [
- ".",
- "gtest",
- "gtest/include",
- "include",
+ "googlemock",
+ "googlemock/include",
+ "googletest",
+ "googletest/include",
],
linkopts = ["-pthread"],
visibility = ["//visibility:public"],
@@ -29,7 +29,7 @@ cc_library(
cc_library(
name = "gtest_main",
- srcs = ["src/gmock_main.cc"],
+ srcs = ["googlemock/src/gmock_main.cc"],
linkopts = ["-pthread"],
visibility = ["//visibility:public"],
deps = [":gtest"],