aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/gtest.BUILD
diff options
context:
space:
mode:
authorGravatar Ken Payson <kpayson@google.com>2017-03-30 17:38:40 -0700
committerGravatar Ken Payson <kpayson@google.com>2017-04-06 13:39:35 -0700
commit975b5103e5037e3b9fc1bde02740b568cadeb2c5 (patch)
tree9b1617360b1c568d2ab6d220758653ff46340387 /third_party/gtest.BUILD
parente98ae0e3b74a41217a6039ce5b75d35a0b9edea0 (diff)
Fix build on Alpine linux + add portability tests
Diffstat (limited to 'third_party/gtest.BUILD')
-rw-r--r--third_party/gtest.BUILD7
1 files changed, 4 insertions, 3 deletions
diff --git a/third_party/gtest.BUILD b/third_party/gtest.BUILD
index a07db65b91..52c9ca2ba7 100644
--- a/third_party/gtest.BUILD
+++ b/third_party/gtest.BUILD
@@ -1,11 +1,12 @@
cc_library(
name = "gtest",
srcs = [
- "src/gtest-all.cc",
+ "googletest/src/gtest-all.cc",
],
- hdrs = glob(["include/**/*.h", "src/*.cc", "src/*.h"]),
+ hdrs = glob(["googletest/include/**/*.h", "googletest/src/*.cc", "googletest/src/*.h"]),
includes = [
- "include",
+ "googletest",
+ "googletest/include",
],
linkstatic = 1,
visibility = [