aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/cpp
diff options
context:
space:
mode:
authorGravatar ccalvarin <ccalvarin@google.com>2018-03-26 12:32:39 -0700
committerGravatar Copybara-Service <copybara-piper@google.com>2018-03-26 12:34:34 -0700
commit61b40750f733d8fb47d50de6965ddf7a3f2dbe66 (patch)
treee96dcb8e7f685bf65db7f275817ce69de257d316 /src/test/cpp
parent816abfc691bec1b16e57d5f2e93edac176527848 (diff)
Remove final third_party/gtest reference.
Missed this in https://github.com/bazelbuild/bazel/commit/8e9f4a8591d65c7972aea3957c57601570e0a39b. RELNOTES: None. PiperOrigin-RevId: 190506543
Diffstat (limited to 'src/test/cpp')
-rw-r--r--src/test/cpp/util/BUILD2
-rw-r--r--src/test/cpp/util/windows_test_util_test.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/test/cpp/util/BUILD b/src/test/cpp/util/BUILD
index 6fb3d5c5c0..aed5d77873 100644
--- a/src/test/cpp/util/BUILD
+++ b/src/test/cpp/util/BUILD
@@ -99,7 +99,7 @@ cc_test(
deps = select({
"//src/conditions:windows": [
":windows_test_util",
- "//third_party:gtest",
+ "@com_google_googletest//:gtest_main",
],
"//conditions:default": [],
}),
diff --git a/src/test/cpp/util/windows_test_util_test.cc b/src/test/cpp/util/windows_test_util_test.cc
index e408246bcc..d777a91dfe 100644
--- a/src/test/cpp/util/windows_test_util_test.cc
+++ b/src/test/cpp/util/windows_test_util_test.cc
@@ -15,7 +15,7 @@
#include <string>
-#include "gtest/gtest.h"
+#include "googletest/include/gtest/gtest.h"
#include "src/test/cpp/util/windows_test_util.h"
#if !defined(COMPILER_MSVC) && !defined(__CYGWIN__)