aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/gtest.BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/gtest.BUILD')
-rw-r--r--third_party/gtest.BUILD14
1 files changed, 14 insertions, 0 deletions
diff --git a/third_party/gtest.BUILD b/third_party/gtest.BUILD
new file mode 100644
index 0000000000..bf980754ca
--- /dev/null
+++ b/third_party/gtest.BUILD
@@ -0,0 +1,14 @@
+cc_library(
+ name = "gtest",
+ srcs = [
+ "src/gtest-all.cc",
+ ],
+ hdrs = glob(["include/**/*.h", "src/*.cc", "src/*.h"]),
+ includes = [
+ "include", "."
+ ],
+ linkstatic = 1,
+ visibility = [
+ "//visibility:public",
+ ],
+)